0099-tentative.c (79B)
1 int x, x = 3, x; 2 3 int 4 main() 5 { 6 if (x != 3) 7 return 0; 8 9 x = 0; 10 return x; 11 } 12