Question: double findMax(double a[ROWS][COLS]);
You have to implement a function called findMax that finds the maximum value in a 2¬dimensional array.
A declaration of the function is shown above.
The variables COLS and ROWS are constants defined elsewhere in the program; you don't need to define them, just use them.