0073-ifndef.c (92B)
1 #ifndef DEF 2 int x = 0; 3 #endif 4 5 #define DEF 6 7 #ifndef DEF 8 X 9 #endif 10 11 int 12 main() 13 { 14 return x; 15 }