C Programming - Complicated Declarations - Discussion
|
|
|
|
Read more:"I never see what has been done; I only see what remains to be done."
- Marie Curie
|
| 7. |
What do the following declaration signify?
void *cmp();
|
| [A]. |
cmp is a pointer to an void type. | | [B]. |
cmp is a void type pointer variable. | | [C]. |
cmp is a function that return a void pointer. | | [D]. |
cmp function returns nothing. |
Answer: Option E
Explanation:
No answer description available for this question.
|
|
Raja said:
(Fri, Jul 8, 2011 06:56:41 AM)
|
|
| |
| Why it is going to return void pointer? |
|
Shalini said:
(Tue, Aug 2, 2011 08:00:28 PM)
|
|
| |
| Because it is clearly mentioned that it is a prototype function and before cmp star indictes the pointer so, void means it doent return nothing. |
|
|