Examveda
Examveda

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

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


This Question Belongs to C Program >> Pointer

Join The Discussion

Related Questions on Pointer