(Choose 1 answer)
float foo(float x, float y) { return(3* x + y);
}
Write appropriate function call for the function given below (suppose that a and b are variables of float type):
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);
Exit 21