Home / C Programming / Complicated Declarations :: General Questions

C Programming :: 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

    Discuss Discuss in Forum


  3. What do the following declaration signify?

    char *scr;

  4. A.
    scr is a pointer to pointer variable.
    B.
    scr is a function pointer.
    C.
    scr is a pointer to char.
    D.
    scr is a member of function pointer.

    View Answer

    Workspace

    Discuss Discuss in Forum