In MIPS, I know that I can declare an array as:
list: .space 20
However, what if I wanted to create an array of different size based on user input? Is this possible?
For example, the program would ask the user to input an integer N and create an array of length N.