Question: C program(function) to find integer Write a C function outside of the main function that takes three integer arguments and returns an median integer. For
C program(function) to find integer
Write a C function outside of the main function that takes three integer arguments and returns an median integer. For example, out of 10,14 and 27 ..14 is the median value. The main function should have atleast 5 calls to this function with different values.
For each call to this function, the main function should print which arguments were given to it and what the value of the function is on those arguments. The program for ask users for 3 integers and then return the median value .
Example output would be > Enter Integer 1 : 5, Enter integer 2 :6 , enter Integer 3:7 .. "The median value is 6". Please note this program must use functions > int median (int a ,int b, int c) and then main functions should have 5 calls to this function with different values. Thank you
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
