-
Which of the following statements are true?
int n(float)
-
- n is a function taking an argument of type float and returning an integer
- n is a function of type float
- n is a function taking an argument of type int and returning a floating point number
- All of above
- None of these
Correct Option: A
The argument that is passed to a function f is of float type and the function finally returns a value that id is of integer type.