Home / C Programming / Complicated Declarations :: Discussion

Discussion :: Complicated Declarations

  1. What do the following declaration signify?

    void *cmp();

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

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    No answer description available for this question.


Be The First To Comment