C Programming - Complicated Declarations - Discussion
|
|
|
|
Read more:"To err is human; to forgive, divine."
- Alexander Pope
|
| 9. |
What do the following declaration signify?
int *f();
|
| [A]. |
f is a pointer variable of function type. | | [B]. |
f is a function returning pointer to an int. | | [C]. |
f is a function pointer. | | [D]. |
f is a simple declaration of pointer variable. |
Answer: Option E
Explanation:
No answer description available for this question.
|
|
Sathish said:
(Mon, Aug 2, 2010 03:32:59 AM)
|
|
| |
| if we put *f in parenthesis it is pointer to function here parenthesis have greater precedence than astrek operator. |
|
|