Exercise 3: Finding Index of the Smallest Value
Find the index of the smallest value in an array.
We'll cover the following...
Problem statement
The code widget below declares two index_of_smallest functions—one for finding the index of the smallest value in an int array, and the other for a double array. ...
Ask