UGC-NET | UGC NET CS 2016 Aug – II | Question 12
The following ‘C’ statement :
int * f [ ] ( );
declares:
(A) A function returning a pointer to an array of integers.
(B) Array of functions returning pointers to integers.
(C) A function returning an array of pointers to integers.
(D) An illegal statement.
Answer: (B)
Explanation:
int * f [ ] ( ); is an array of functions returning pointers to integers.
For more information on pointers declaration Refer:How to declare a pointer to a function?
So, option (B) is correct.
Quiz of this Question