adplus-dvertising
frame-decoration

Question

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

a.

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

b.

int *fun(float*, char*)

c.

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

d.

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

Answer: (c).int ***fun(float*, char**)

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. 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