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