Write a C program to find a Factorial of any number || C Programming Tutorials

Опубликовано: 20 Октябрь 2024
на канале: Learning and Teaching Coding
141
11

@learningandteachingcoding07

========What is Factorial?========

Factorial of n is the product of all positive descending integers. Factorial of n is denoted by n!

5! = 5 * 4 * 3 * 2 * 1
= 120

Here, 5! is pronounced as "5 factorial", it is also called "5 bang" or "5 shriek".

The factorial is normally used in Combinations and Permutations (mathematics).

#LearningandTeachingCoding
#CProgrammingTutorials
#CPrograms