Question - Write a program that contains a main function and three other functions that will return various attribute information about an array of floating point numbers:
array_sum - total sum of all array elements array_avg - average of all array elements array_min - the smallest number of the array elements
The main function should print the values returned from every function at the end of the program.
Add comments in code section that will be useful in the future.