Home / C Programming / Pointers :: Discussion

Discussion :: Pointers

  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?

  2. A.
    float **fun(float***);
    B.
    float *fun(float**);
    C.
    float fun(float***);
    D.
    float ****fun(float***);

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    No answer description available for this question.


Be The First To Comment