/* This code produces the output: 0 1 2 3 4 6 7 8 9 */
for (i = 0; i < 10; i++) {
   if (i == 5)
      continue;
   printf("%d ", i);
}