Write a program that does the following: Accepts from the user 10 integer numbers and stores it in an array. Sorts the 10 elements in ascending order. Displays the elements in order. Accepts from the user a number and performs a binary search on the array, looking for this number. Responds with: Number found in position n (n should be 1-based, i.e.: 1 – 10). Or: Number not found.