No.1
Design and write a C program in 2 float-values (first and second)and call a function with the two values as parameters. The function should use pointers to make sure that
"first" will hold the biggest value after the function has been called.
No.2
Change the function from NO.1 to read in 3 values("first","second" and "third"),call a function,that uses pointers to make "first"the biggest and "third"the smallest value
No 3
Change the function from No.2 to return the average value of the 3 input parameters.
No4 Read 10 temperaturvalues into an array
No5 Validate temperatature to be with in the ragen of 30...60C
No.6 Create 4 functions to calculate:
3.1 the total sum,
3.2 the average value,
3.3 the minimum value,
3.4 the miximum value,
No.7 Finally display the results from 3.1 to 3.4