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