Question
What is the following function determining?
int fn(int a, int b)
{
if (b==0) return 0;
if (b==1) return a;
return a+fn(a, b-1);
}
The above function is a recursive function. The function will return a+b where a and b are non-negative integers