ARM assembly code
Read 10 values from keyboard, store them in memory as array. Ask user which number to display and print that number only.
Use an external C scanf to input
Please enter 10 numbers randomly:
> 9
> 3
> 27
> 7
>…
Which number do you want to see?
> 2
Use printf to output
It is 27
Repeat asking until user enter a negative number, such as -1
Use a loop of 10 iterations to read the numbers
