Examveda
Examveda

The declaration
int (*p) [5];
means

A. p is one dimensional array of size 5, of pointers to integers.

B. p is a pointer to a 5 elements integer array.

C. The same as (*p) [5];

D. None of these.

Answer: Option B


This Question Belongs to C Program >> Pointer

Join The Discussion

Related Questions on Pointer