write a program in c language to print the number between 1 to 10 using for loop.

#include<stdio.h>
#include<conio.h>
int main()
{
int i;
for(i=1;i<=10;i++)
{
printf("%d",i);
}
return 0;
}


Comments

Popular posts from this blog