For the following function, which is a valid function call? Assume maxvalue is an integer.

int findmax(int x, int y)
if (x > y)
return x;
else
return y;


a) findmax(5, 10)
b) findmax(10, 5)
c) findmax(5, hello)
d) findmax(hello, world)