Challenge 5: Finding Minimum Value in an Array
This challenge gives an array. Find the minimum value in an array.
We'll cover the following...
Problem statement
Implement a function findMinimum(int arr[], int size)
, ...