Question: You are to create a program that will input a group of floating point values, storing them as double values in an array. This array will then be sent to three functions.
1. The first function will sort the function using the selection sort algorithm from the text.
2. The next function will output the sorted array to the monitor.
3. The final function will find and output the median of the list.
Write this program in c language and provide all the code.