Math, asked by riyamenonraksha, 1 year ago

For n =5 , how many times with the following function be called

int recursive_sum(int n)

{

if(n == 0)

return 0;

return n + recursive_sum(n - 1);

}​

Answers

Answered by junaid2003
0

Answer:

Hey mate here is your answer I do not know the answer.

Similar questions