1.

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 + y(B) x + x*y(C) x*y(D) xy

Answer»


Discussion

No Comment Found