# Introduction In this lab, you will learn how to compute factorials in C programming. The lab covers two methods for calculating the factorial of a number: using an iterative loop and a recursive function. You will start by reading an integer input from the user, then implement both the loop-based and recursive approaches to compute the factorial, and finally print the result. The lab provides step-by-step instructions and code examples to guide you through the process, ensuring a comprehensive understanding of factorial computation in C.
Click the virtual machine below to start practicing