What will be the output of the following code segment?

1.8 What will be the output of the following code segment?
int a[10] = {1, 2,3,4,5,6,7,8,9,10}, *p = a;
printf("\n%d:%d", p[7], p[a[7]]);
A) 7:7
B) 7:8
C) 8:9
D) 8:8


Leave a Reply