6_5_45_ptr_eq_null.c (108B)
1 int test_main(void) { 2 int* p = 0; 3 int x = 42; 4 int* q = &x; 5 return (p == 0) + (q != 0) + (p != q); 6 }