ads

Sunday, 28 August 2016

C Program to print first 10 Natural Numbers

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

No comments:

Post a Comment