fork download
  1. #include <stdio.h>
  2.  
  3. #define WITH_INITIAL_JUMP_IN switch (0)
  4. #define JUMP_IN default:
  5.  
  6. int main(void) {
  7. int i = 2;
  8.  
  9. WITH_INITIAL_JUMP_IN while (i--) {
  10. puts("First action");
  11. JUMP_IN
  12. puts("Second action");
  13. }
  14. return 0;
  15. }
Success #stdin #stdout 0.02s 1720KB
stdin
Standard input is empty
stdout
Second action
First action
Second action
First action
Second action