ISRO | ISRO CS 2017 – May | Question 53
What does the following C-statement declare?
int (*f) (int*);
(A) A function that takes an integer pointer as argument and returns an integer
(B) A function that takes an integer as argument and returns an integer pointer
(C) A pointer to a function that takes an integer pointer as argument and returns an integer
(D) A function that takes an integer pointer as argument and returns a function pointer
Answer: (C)
Explanation: Refer: GATE-CS-2005 | Question 1
Quiz of this Question
Please Login to comment...