C04 Answer


void fillArrayInOrder( int arr[], int size, int first )
{
  int j;
  
  for ( j=0; j<size; j++ )
  {
    arr[j] = first+j;
  }
}