Praveen | Typing Speed Test is a very useful Software available for free Download.

C Programs to Series

      C programming in series print in different types of series using different methods. Series is:- 1/1,1/4,1/9,1/16,1/25,...........


Series in C programming code

#include<stdio.h>
#include<conio.h>

void main()
{
   int n,  i;
   clrscr();
   printf("\n Enter the number of terms ");
   scanf("%d",&n);
   printf("\n First %d terms of series are :-",n);
   for ( i = 1 ; i <= n ; i++ )
   {
     printf(" 1/%d,",i*i);
   }
   getch();
}


Output:-