In My Words
Thanks. We can also find factorial of a number using recursion. Here is the recursive equation:factorial(N) = factorial(N-1) x NHere is the factorial program using loop.
Please comment, if you like the post, you find any mistake or if you have any query.
Thanks. We can also find factorial of a number using recursion. Here is the recursive equation:
ReplyDeletefactorial(N) = factorial(N-1) x N
Here is the factorial program using loop.