6_5_48_ternary_ptr_null.c (74B)
1 int test_main(void) { 2 int x = 42; 3 int* p = 1 ? &x : 0; 4 return *p; 5 }