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
0
Answer:
Hey mate here is your answer I do not know the answer.
Similar questions
History,
6 months ago
English,
6 months ago
Biology,
6 months ago
Social Sciences,
1 year ago
Math,
1 year ago