CPP program to print factorial of a number
The below program prints factorial of a number using a loop and using recursion. The CPP cout object is used to output the result on the screen. The factorial of a number can be calculated for positive integers only and is represented by n!. n! = n*(n-1)*(n-2)*……*1 0! = 1 Code: Using Loop #include <iostream.h> … Read more