Question: Exercise 2.5. Write a function that computes the minimum and the max- imum of two integer variables and returns them through call-by-reference parameters. It should
Exercise 2.5. Write a function that computes the minimum and the max- imum of two integer variables and returns them through call-by-reference parameters. It should have the following prototype:
int minmax(int a, int b, int * min, int * max);
Write a unit test of minmax in a main function.
language is in C.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
