Home / CSE MCQs / C++ - MCQs :: Discussion

Discussion :: C++ - MCQs

  1. The correct statement for a function that takes pointer to a float, a pointer to a pointer to a char and returns a pointer to a pointer to a integer is
  2. A.
    int **fun(float**, char**)
    B.
    int *fun(float*, char*)
    C.
    int ***fun(float*, char**)
    D.
    int ***fun(*float, **char)

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    int ***fun(float*, char**)


Be The First To Comment