/********************************************************************* C201 Fall 2006 Dana Vrajitoru array_oper.cpp Functions concerning operations on arrays. **********************************************************************/ #include using namespace std; #include #include "array_oper.h" // Outputs the elements of an array. void Output(int *a, int size) { cout << "The array has " << size << " elements." << endl << "The elements are: "; for (int i=0; i