Home / C Programming / Complicated Declarations :: Discussion

Discussion :: Complicated Declarations

  1. Is the following declaration correct?
    char (* ( *f())[])();

  2. A.
    Yes
    B.
    No

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    f is a function that returns a pointer to an array of pointers to functions that return a char.


Be The First To Comment