int fact(int n)
{
if(n == 0)
return 1;
return n * fact(n - 1);
}
int main()
{
int n = 5;
int ans = fact(n);
printf("%d",ans);
return 0;
}
a) return 1
b) return n * fact(n-1)
c) if(n == 0)
d) if(n == 1)
Consider the following recursive implementation to find the factorial of a number. Which of the lines is the base case?
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
Consider the following recursive implementation to find the factorial of a number. Which of the lines is the base case?
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!