Question:The declaration int (*p[5])() means:
A p is an array of pointers to functions the return type of which is an integer
B p is a pointer to a function that returns a pointer to an integer
C p is a pointer to an array of integers
D p is a pointer to an array of integer pointers
E p is a pointer to a character string
+ AnswerA
+ Report