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
5
Explanation:
(5-1,5+2)
i hope this helps you
Similar questions
Social Sciences,
6 months ago
History,
6 months ago
Social Sciences,
6 months ago
Chemistry,
11 months ago
Math,
1 year ago
Math,
1 year ago