Exercise 3: Finding Index of Smallest Value
Let's test your understanding of templates by finding the index of the smallest value in an array.
We'll cover the following...
Problem Statement
In the code widget below, two functions both called index_of_smallest
are declared. One finds the minimum value index of an int
type array and the other for double
type. ...