Home / C Programming / Complicated Declarations :: Discussion

Discussion :: Complicated Declarations

  1. What do the following declaration signify?

    int *f();

  2. 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.

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    No answer description available for this question.


Be The First To Comment