6_5_pointer_compound_bad.c (102B)
1 int test_main(void) { 2 int a = 0; 3 int b = 0; 4 int* p = &a; 5 int* q = &b; 6 p += q; 7 return 0; 8 }