long factorial (long x) { ???? return x * factorial(x - 1); }
With what do you replace the ???? to make the function shown above return the correct answer?
Reveal answer
Fill a bubble to check yourself
long factorial (long x) { ???? return x * factorial(x - 1); }
With what do you replace the ???? to make the function shown above return the correct answer?