void fillArrayDescending( int size, int arr[], int start ) { int j; for ( j=0; j<size; j++ ) { arr[j] = start-j; } }