19
Answer (Choose 1 answer)
A. z = foo(a,b);
B. z foo(a, float b);
C. z = foo():
D. z = foo(float a,b);
E. z = foo(float a, float b);
Write appropriate function call for the function given below (suppose that a and b are variables of float type):float foo(float x, float y) { return(3*x + y);}
FUS