C Programming - Complicated Declarations - Discussion
|
|
|
|
Read more:"I never see what has been done; I only see what remains to be done."
- Marie Curie
|
| 10. |
What do the following declaration signify?
void (*cmp)();
|
| [A]. |
cmp is a pointer to an void function type. | | [B]. |
cmp is a void type pointer function. | | [C]. |
cmp is a function that return a void pointer. | | [D]. |
cmp is a pointer to a function which returns void . |
Answer: Option B
Explanation:
No answer description available for this question.
|
|
|