Home » C++ Programming » Pointers » Question
  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
    1. int ***fun(*float, **char)
    2. int ***fun(float*, char**)
    3. int **fun(float**, char**)
    4. int *fun(float*, char*)
    5. None of these
Correct Option: B

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



Your comments will be displayed only after manual approval.