Vidyalelo
C Programming · Q42

Pointer

Programming · C Programming · question 42

Q42

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.
Answer
C.
The same as (*p) [5];
D.
None of these.

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board