Pages

to print Odd numbers from 1 to 20

Monday 8 July 2013
#include<stdio.h>
#include<conio.h>

void main ()
{
    int a;
    clrscr ();
    a=1;

    while (a<=20)
    {
        if (a%2==1)
        printf ("\n%d",a);
        a++;
    }
    getch ();
}

No comments:

Post a Comment