Even Number Printing Using Loops in C Programming Language 2 4 6 8

 

#include <stdio.h>
//#include <conio.h>

void main() {


//clrscr();

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

 //	getch(); 

}

Comments