Friday 4 September 2015

WAP to print counting from 51 to 90.

#include<stdio.h>
#include<conio.h>
void main()
{ int a ;
for(a=51;a<=90;a++)
printf("\n%d",a);
getch();
}

No comments:

Post a Comment