# Introduction In this lab, we will learn how to find the factorial of a given number using recursion in C programming language. Factorial is denoted by '!' and is a product of all positive integers that are less than or equal to the given number. For example, the factorial of 5 is 5 x 4 x 3 x 2 x 1 = 120.
Click the virtual machine below to start practicing