Question: c program. eclipse preferably. Write a program that: 1. Prompts the user to enter scores, one per line, and press on a blank line to
c program. eclipse preferably.
Write a program that: 1. Prompts the user to enter scores, one per line, and press on a blank line to end the entry of scores. 1. Be sure to end the prompt with a In, or the automated testing script will timeout with an error. 2. NOTE: only output one prompt to the user. 2. Uses a do-while loop that gets scores from the user until they hit on a line by itself. 1. Scores are floating point values, and they are >= 0.0. 3. When the loop exits, prints the count of scores, the min score, the max score, the average score, and the standard deviation, separated by tabs (lt), and ended with a newline character (In). 1. If the user didn't enter any scores, output o for all values. For the standard deviation computation, use the formula for the whole population: SumSquares Sum? N = N where o is the standard deviation, Sum is the sum of the test scores, SumSquares is the sum of the squares of the test scores, and Nis the number of test scores. Sample Console I/O [black is screen output (stdout) from your program, blue is keyboard input (stdin) from the grade script] Press on a blank line to end. Enter scores, one per line. 20 30 10 40 4 10.000000 40.000000 25.000000 11.180340