Home / C Programming / Complicated Declarations :: Discussion

Discussion :: Complicated Declarations

  1. Declare the following statement?
    "An array of three pointers to chars".

  2. A.
    char *ptr[3]();
    B.
    char *ptr[3];
    C.
    char (*ptr[3])();
    D.
    char **ptr[3];

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    No answer description available for this question.


Be The First To Comment