6_8_05_break.c (89B)
1 int test_main(void) { 2 int i; 3 for (i = 0;; i++) 4 if (i == 42) break; 5 return i; 6 }