6_7_9_02_static_ptr_null_read.c (95B)
1 #define NULL ((void*)0) 2 static int* p = NULL; 3 4 int test_main(void) { return p == 0 ? 42 : 0; }