/* Program#ifcont.c A simple program to show the use of the continue statement */ #include main() { int x ; for ( x=0 ; x<=100 ; x++) { if (x%2) continue; printf("%d\n" , x); } }