C program to print factorial of a number
The below program prints factorial of a number using a loop. The C printf statement 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 C program to print factorial of a number … Read more