Showing posts with label The Series Program. Show all posts
Showing posts with label The Series Program. Show all posts

Feb 2, 2013

The Series Program

/*The Series Program*/

#include"stdio.h"
#include"conio.h"
#include"math.h"
void main()
{
clrscr();
int i;
printf("The series is=");
for(i=1;i<=50;i++)
printf("\t%d",i);
getch();
}

Popular Posts