Home / C Programming / Complicated Declarations :: Discussion

Discussion :: Complicated Declarations

  1. What do the following declaration signify?

    char **argv;

  2. A.
    argv is a pointer to pointer.
    B.
    argv is a pointer to a char pointer.
    C.
    argv is a function pointer.
    D.
    argv is a member of function pointer.

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    No answer description available for this question.


Be The First To Comment