Computer Science, asked by Razlan6591, 10 months ago

What is meaning of following declaration?
int(*p[5])();

Answers

Answered by namrata2008gupta
7

Answer: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.

Explanation:

Similar questions