Write a program that uses a loop to input ten signed 32-bit integers from the user, stores the integers in an array, and redisplays the integers.
You may use the PromptForIntegers procedure from section 5.6 as a starting point. Have your 'ReadIntegers' procedure accept as input the address (offset) of the caller's array and the length of that array. Also have the caller specify the address (offset) of a prompt string you should display before you begin the input loop.
After your ReadIntegers procedure returns to the main, then main should call a second procedure to 'PrintIntegers'. This procedure should again accept an array's address (offset) and length as input parameters.
Document all of your procedures well!
This assignment is Level 2.