Home / C Programming / Complicated Declarations :: Discussion

Discussion :: Complicated Declarations

  1. Declare the following statement?
    "A pointer to a function which receives nothing and returns nothing".

  2. A.
    void *(ptr)*int;
    B.
    void *(*ptr)()
    C.
    void *(*ptr)(*)
    D.
    void (*ptr)()

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    No answer description available for this question.


Be The First To Comment