Search⌘ K

Example 49: Calculate a Factorial

Explore how to create a recursive function in C that calculates the factorial of a number. Understand base cases and recursive calls, while respecting data type limits for safe computation.

We'll cover the following...

Problem

Write a function that uses recursion to calculate the factorial of a number passed as a parameter.

Example

Input Output
...