int a[10]={1,2,3,4,5,6,7,8,9,10}; *p=a; printf("\n%d:%d", p[7], p[a[7]]);
Answer & ExplanationOption: [C]
The first element of the array i.e. a[0] is assigned by *p=a. Therefore a[0]=1. Then p[7]=8 and p[a[7]]=p[8]=9
Hence 8:9
Article and Schedule Quiz | Start Test! |