The fac (int n) function inside the
F=f * n.
Return (f);
The specific said what mean?
Why do some factorial recursive calls is
F=fac (n - 1) * n;
CodePudding user response:
Return is the result of the function, the recursion is the results and to call a function as a parameter
CodePudding user response: