Question: Write a program in MIPS MARS assembly language that finds the factorial of a number. The program should allow the user to enter a number
Write a program in MIPS MARS assembly language that finds the factorial of a number. The program should allow the user to enter a number and display the factorial of that number. DO NOT USE RECURSION. Must use a loop.
PLEASE COMMENT OUT CODE BLOCKS so I can try to understand how to do it. I've attached starter code that was provided, please be sure to include comments so I can walk myself through it.

Provided Starter Code;

Example Output; Enter a number ? 10 Factorial of the number is 3628800 Loop Iteration High Level Code; int product = 1; for ( int j=1; j
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
