Comment on the following 2 arrays with respect to P and Q.
int *a1[8];
int *(a2[8]);
P. Array of pointers
Q. Pointer to an array
int *a1[8];
int *(a2[8]);
P. Array of pointers
Q. Pointer to an array
A. a1 is P, a2 is Q
B. a1 is P, a2 is P
C. a1 is Q, a2 is P
D. a1 is Q, a2 is Q
Answer: Option B
Join The Discussion