6_8_11_goto_backward.c (95B)
1 int test_main(void) { 2 int i = 0; 3 L: 4 if (i == 10) goto E; 5 i++; 6 goto L; 7 E: 8 return i; 9 }