Home / C Programming / Complicated Declarations :: Discussion

Discussion :: Complicated Declarations

  1. What do the following declaration signify?

    char *arr[10];

  2. A.
    arr is a array of 10 character pointers.
    B.
    arr is a array of function pointer.
    C.
    arr is a array of characters.
    D.
    arr is a pointer to array of characters.

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    No answer description available for this question.


Be The First To Comment