Jaegers8569 Jaegers8569 06-03-2024 Computers and Technology contestada What does the following function do? int fun(int x, int y) { if (y == 0) return 0; return (x + fun(x, y-1)); }a. x+yb. x+y*yc. x*yd. pow(x,y)