Home / C Programming / Complicated Declarations :: Discussion

Discussion :: Complicated Declarations

  1. Declare the following statement?
    "A pointer to a function which receives an int pointer and returns float pointer".

  2. A.
    float *(ptr)*int;
    B.
    float *(*ptr)(int)
    C.
    float *(*ptr)(int*)
    D.
    float (*ptr)(int)

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    No answer description available for this question.


Be The First To Comment