Question: Write the code for this program in C language. Test your expectation by creating a recursive factorial function in lab1.c. For instance, the factorial of
Write the code for this program in C language.

Test your expectation by creating a recursive factorial function in lab1.c. For instance, the factorial of 5 is represented by 5! and is calculated as 54321=120. In the factorial function, you will print the address of the factorial function and the address of the argument passed to it. In main, you will prompt the user for what factorial they will want to calculate and send that input as an argument to the function. In main, you will also print the value returned from the factorial function. Note: you will be expected to use scanf and printf The idea behind the recursive factorial function is the following: Fn={1nFn1ifn=0(basecase)ifn>=1(recursivestep)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
