Objective
Implement a function that scans an integer array and returns its highest value.
Steps
$ int scores[] = {7, 3, 99, 15}; max(scores, 4)
99
$ int temps[] = {-10, -4, -7}; max(temps, 3)
-4
$ max(scores, 0)
0
Expected files
Allowed functions
None. Write every helper yourself.

Objective
Implement a function that scans an integer array and returns its highest value.
Steps
$ int scores[] = {7, 3, 99, 15}; max(scores, 4)
99
$ int temps[] = {-10, -4, -7}; max(temps, 3)
-4
$ max(scores, 0)
0
Expected files
Allowed functions
None. Write every helper yourself.

Tests
Run the tests to grade your code