Home / C Programming / Complicated Declarations :: Discussion

Discussion :: Complicated Declarations

  1. What do the following declaration signify?

    int *ptr[30];

  2. A.
    ptr is a pointer to an array of 30 integer pointers.
    B.
    ptr is a array of 30 pointers to integers.
    C.
    ptr is a array of 30 integer pointers.
    D.
    ptr is a array 30 pointers.

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    No answer description available for this question.


Be The First To Comment