Home / C Programming / Complicated Declarations :: Discussion

Discussion :: Complicated Declarations

  1. Declare the following statement?
    "A pointer to an array of three chars".

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

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    No answer description available for this question.


Be The First To Comment