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