int get_max( int a[] ){ int i, max; max = a[0]; for ( i = 0; i < SIZE; i++ ){ if ( max < a[i] ){ max = a[i]; } } return max; }