C Program to print odd numbers using For Loop 1 3 5 7 9 ...

#include 
//#include 

void main() {



//clrscr();

int i;
int no;
 
 
   printf("\nC program to print Odd numbers : ");
 
   for ( i = 0 ; i < 20 ; i++ )
   {
      i = i+1;
      printf("%d  ", i);
     
   }

 //	getch(); 

}

Comments