Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Which of the following statements are true?
int f(float)

Which of the following statements are true?
int f(float)
a) f is a function taking an argument of type int and returning a floating point number
b) f is a function taking an argument of type float and returning an integer
c) f is a function of type float
d) f is a function of type int

Answer: b
Explanation: 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.

Join The Discussion