Yes, all arrays are passed as the address of the very first element of the array.

Finding the largest element is just a question of walking through the array and tracking the largest one [start by setting "largest" to for example 0 or -9999999 or whatever you can be sure is GUARANTEED to be smaller than at least the largest number].

--
Mats