1 #include <stdio.h> 2 #include <stdlib.h> 3 4 /* run this program using the console pauser or add your own getch, system("pause") or input loop */ 5 6 int main(int argc, char *argv[]) { 7 8 int i=0; 9 for(i=0;i<=500;i++) 10 { 11 if(i%2==0)//I%==1 12 { 13 printf("%d\t",i); 14 } 15 } 16 return 0; 17 }