Problem:
Question- Implement the MergeSort algorithm using recursive function of your own to sort 10 integers from user input. Implementation instruction:
a) In your main() function, define an array to store the input integers and allow user input.
b) Call your MergeSort function to sort the input integers.
c) Print out the sorted array of integers in your main() function
d) Also explain how the program works.
Show the code, demonstrate it works properly and describe what it is doing.