12345678910



Question 1: Which of the following statements correctly declare a function that receives a pointer to pointer to a pointer to a float and returns a pointer to a pointer to a pointer to a pointer to a float?
1. float **fun(float***);
2. float fun(float***);
3. float *fun(float**);
4. float ****fun(float***);