6_7_6_09_ptr_to_array.c (89B)
1 int test_main(void) { 2 int b[3] = {0, 0, 42}; 3 int (*pa)[3] = &b; 4 return (*pa)[2]; 5 }