6_7_3_04_ptr_to_const.c (78B)
1 int test_main(void) { 2 const int x = 42; 3 const int* p = &x; 4 return *p; 5 }