Showing posts with label
WAP to print numbers from 1-50 which are divided by 7.
Show all posts
Showing posts with label
WAP to print numbers from 1-50 which are divided by 7.
Show all posts
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 ();
}