Minimum
Lesson 13 of 20 in Coddy's Beginner Challenges - Practice Basic Concepts course.
Challenge
EasyWrite a function named findMin that gets an array of integers and returns the minimum number.
Try it yourself
int findMin(int* arr, int arrSize) {
// Write code here
}