Q:

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

0

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


  1. the same as int *p[5];
  2. p is a one dimensional array of size 5, of pointers to integers
  3. Both A and B
  4. p is a pointer to a 5 element integer array

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Correct Answer:

p is a pointer to a 5 element integer array

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now
Guess the output... >>
<< What is (void*)0?...