February 2020
Beginner to intermediate
616 pages
15h 16m
English
We will use two arrays in this recipe. The first array will contain the values from which the maximum and minimum values have to be found. The second array will be used to store the minimum and maximum values of the first array.
Let's call the first array arr and define it to contain five elements with the following values:

Let's call our second array mm. The first location, mm[0], of the mm array will be used for storing the minimum value and the second location, mm[1], for storing the maximum value of the arr array. To enable comparison of the elements of the mm array with the elements of the arr array, copy the ...
Read now
Unlock full access