iForeRunner
 
   
 
  c  
   
   
   
 
  PRINT TEN EVEN NUMBERS  
 
 



Program to print 10 even numbers




‡include<stdio.h>
main() {
int i=1,c=0; clrscr(); while(c<10) { if(i%2==0) { printf("\n%d ",i); c++; } i++; } getch(); }

Please send comments to vgdarur.javafive@blogger.com