Skip to main content

Printing 1 to 10


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

Comments

Popular posts from this blog