You've defined "Row" and "col" as const ints at the beginning, but you reuse those variables in Max(). You can't assign to a const int.
Also look at the loop:
for ( col=1;col <col;col++)
"col<col" will never EVER be true: a variable is never less than itself.
But you're REALLY close to having it right. "Row" and "col" define the bounds of the array. Use different variables (maybe r and c) as indexes INTO the array.