contfor.c (269B)
1 /* Esercizio 4.39 */ 2 3 #include <stdio.h> 4 5 int main() 6 { 7 int x; 8 9 for(x = 1; x <= 10; x++) { 10 11 if ( !(x == 5) ) 12 printf("%d ", x); 13 14 } /* end for (x) */ 15 16 printf("\nNOT used continue to skip printing the value 5\n"); 17 18 return 0; 19 } /* E0F main */ 20