Q: What is Recursion Function, also write Algorithm/Pseudocode for finding factorial recursively.
Recursion function - it is a function that calls itself
Factorial:
f(0) = 1
f(n) = n * f(n - 1)
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment