Question: ask 3: Implement factorial function using a) Iterative solution (Write a user defined function) b) Recursive solution int factorial rec (int n) { if(n=0 n=1)

ask 3: Implement factorial function using a) Iterative solution (Write a user defined function) b) Recursive solution int factorial rec (int n) { if(n=0 n=1) return 1: else return n*factorial_rec(n-1); Write a simple main function to test your functions
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
