-
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
-
- int ***fun(*float, **char)
- int ***fun(float*, char**)
- int **fun(float**, char**)
- int *fun(float*, char*)
- None of these
Correct Option: B
int ***fun(float*, char**)