Home / C Programming / Complicated Declarations :: Discussion

Discussion :: Complicated Declarations

  1. What do the following declaration signify?

    int (*pf)();

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

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    No answer description available for this question.


Be The First To Comment