C05 Answer


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