Question: solve in C++ What will be the problems with the following recursive function, where we want to find the N-th Factorial number? Correct the problems.

solve in C++
What will be the problems with the following recursive function, where we want to find the N-th Factorial number? Correct the problems. int Factorial (int n) { int Fact; Fact = n * Factorial (n-1); return Fact; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
