6_8_01_if_else.c (84B)
1 int test_main(void) { 2 int x; 3 if (1) 4 x = 7; 5 else 6 x = 99; 7 return x; 8 }