Q 10 What below recursive function calculate
int fun(int n)
{
if (n==0||n==1)
return 1;
else
return (n+fun(n-1));
}
N
fn numbers
Answers
Answered by
0
Answer:
20 mark as brainliest I don't know formula
Similar questions
Social Sciences,
1 month ago
Accountancy,
1 month ago
Hindi,
3 months ago
English,
3 months ago
Computer Science,
10 months ago
Social Sciences,
10 months ago