Friday 4 September 2015

WAP to print counting from 1 to 10.

#include<stdio.h>
#include<conio.h>
void main()
{ int a;

for (a=1;a<=10;a++)
printf("\n%d",a);
getch();
}

No comments:

Post a Comment