Open In App

C Quiz – 106 | Question 2

Like Article
Like
Save
Share
Report

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 an array of 5 pointers to integers.
(E) p is a pointer to an array of 5 integers


Answer: (E)

Explanation: Here p is basically a pointer to integer array of 5 integers. In case of “int *p[5]”, p is array of 5 pointers to integers.

Quiz of this Question


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads