Computers and Technology
an application program interface (api) provides a procedure max, which returns the greater of its two integer arguments. a programmer would like to find the greatest of three integer values a, b, and c. which of the following expressions will produce the desired result in every case? Max (Max (a, b), c)Max (a, b) - Max (b, c)Max (a, b) + Max (b, c) Max (a, c)(Max (a, b) + Max (b, c)) / 2