Question: i need this in c programming assignment is given and also code is given you just have to code the lines where it says implement
i need this in c programming
assignment is given and also code is given you just have to
code the lines where it says implement code here

Exercise 2. (50 points) Finding Minimum and Maximum. In this exercise you will implement a simple C program that finds the minimum and the maximum number from a series of numbers. At the beginning of the program, you will take an integer (n) as an input and run a for loop n times. At each iteration, you will take a floating point number (f) as an input. At the end of the program execution, you will print out the minimum (min) and the maximum (max) number on the standard output screen The block below shows a sample execution of the program where user inputs 10 numbers from 5 to -4 (they can be be arbitrary). The final output minimum and maximum values are displayed at the end. $ ./minmax.c 10 -this is the loop iteration number 4 3 2 -2 -3 -4 The minimum value is: -4.00000 The maximum value is: 5.00000 D untitled | e my-log.c e
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
