Write C Accepts 10 Integers User Using Array Loop User Type Input Console Prints Numbers E Q43892280
write in c++
- Accepts 10 integers from the user using anarray and a loop. The user willtype the input on the console.
- Prints the numbers entered by the user in reverse order fromthe order in which they were entered. This output is displayed onthe console.
- Sorts the contents of the array from lowest to highest numberand displays the numbers in this new, sorted order.
- Note: dont use any existing sortingalgorithm(library implementation). You must implement the algorithmfrom scratch.
Expert Answer
Answer to write in c++ Accepts 10 integers from the user using an array and a loop. The user will type the input on the console. P…
OR