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