"Nothing is impossible to a willing heart."
- (Proverb)
|
C Programming - Complicated Declarations - Discussion
|
| 5. |
What do the following declaration signify?
int (*pf)();
|
| [A]. |
pf is a pointer to function. | | [B]. |
pf is a function pointer. | | [C]. |
| pf is a pointer to a function which return int |
|
| | [D]. |
pf is a function of pointer variable. |
Answer: Option C
Explanation:
No answer description available for this question.
|
|
|
|