Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What does this return?---------------------------------
int f(int n) {
if(n == 0) return 1;
return f(n-1) + 1;
}
n - 1
n
n + 1
Infinite recursion
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!