Saturday, 26 September 2015

Program to display from 1 to 10

/*Program to display from 1 to 10*/

#include<conio.h>
#include<stdio.h>
void main()
{
int i=1;
clrscr();
while(i<=10)
{
printf("%d\n",i);
i++;
}
getch();

}

No comments:

Post a Comment