Top

Discussion

What’s the meaning of following declaration in C language?

int (*p)[5];

 

  • A.It will result in compile error because there shouldn't be any parenthesis i.e. “int *p[5]” is valid.
  • B.p is a pointer to 5 integers
  • C.p is a pointer to integer array.
  • D.p is a pointer to an array of 5 integers

Answer: D

No answer description available for this question.
 

No comment is present. Be the first to comment.
Loading…

Post your comment