MCQOPTIONS
Saved Bookmarks
| 1. |
max is a function that returns the larger of the two integers, given as arguments. Which of the following statements finds the largest of three given numbers? |
| A. | max (max (a, b), max (a, c)) |
| B. | max(b, max(a, c) ) |
| C. | max (max (a, b). max ( b, c )) |
| D. | All of the above |
| Answer» E. | |