// IOVec.C
// Name:  Gary T. Leavens
// TA:    Bjarne Stroustrup
// Section:  A1

#include <iostream.h>

void InputVec( int vec[], int& size, int max )
{
  // ****** STUB ********

  cout << "*** InputVec routine entered ***\n";
  size = 3;
  vec[0] = 25;
  vec[1] = 10;
  vec[2] = 30;
}


void OutputVec( const int vec[], int size )
{
  // ****** STUB ********

  cout << "*** OutputVec routine entered ***\n";

  cout << vec[0] << '\n';
  cout << vec[1] << '\n';
  cout << vec[2] << '\n';
}
