Computer Science, asked by supriya45511203, 11 months ago

14
Find the output for the function if x=5 and y=2:
int fun1(int x, int y)
if(x == 0)
return y;
else
return fun1(x - 1, x + y);​

Answers

Answered by kapil7740
5

Explanation:

(5-1,5+2)

i hope this helps you

Similar questions