Thursday, November 21, 2013

C++ Program That Calculates The Factorial Of A Number Using Recursion


1 comment:

  1. Thanks. We can also find factorial of a number using recursion. Here is the recursive equation:
    factorial(N) = factorial(N-1) x N
    Here is the factorial program using loop.

    ReplyDelete

Please comment, if you like the post, you find any mistake or if you have any query.