1 #include <stdio.h> 2 3 int main(void) 4 { 5 6 int i = 0; 7 8 for (i = 0; i < 10; i++) { 9 if ((i % 2) == 0) 10 printf("World \n"); 11 else 12 printf(" Hello \n "); 13 } 14 15 printf(" the end \n"); 16 17 return 0; 18 } 19