ybarnett4216 ybarnett4216 10-03-2024 Computers and Technology contestada What does the following function do in general? int fun(int x, int y) if y == 0 return 0; return (x fun(x,y-1));