Best collection of C programs
Tuesday, January 4, 2011
NUMBERS DIVIDED BY 7
WAP TO PRINT NUMBERS FROM 1-50 WHICH ARE DIVIDED BY 7
void main ()
{
int a;
clrscr ();
a=1;
while (a<=50)
{
if (a%7==0)
printf ("%d\n",a);
a++;
}
getch ();
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment