why particularly in return statement we are calling
Recursion doubt
hello @viknesh1375
no reason behind it. u can call before return as well.
for exampl->
int fact(int n) {
if(n==0){
return 1;
}
int smallAns=fact(n-1);
int ans=n * smallAns;
return ans;
}
I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.
On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.