6_5_62_compound_assign_ptr_sub.c (96B)
1 int test_main(void) { 2 int a[5] = {42, 0, 0, 0, 0}; 3 int* p = a + 4; 4 p -= 4; 5 return *p; 6 }