6_5_41_ptr_sub_ptr.c (101B)
1 int test_main(void) { 2 int a[5] = {0}; 3 int* p = a + 4; 4 int* q = a + 1; 5 return (int)(p - q); 6 }