// testMyArray.cpp // Simple class template MyArray test driver // CS210 - S'03 - 3/18/03 - Ray S. Babcock // #include using namespace std; #include "MyArray.h" int main (void) { MyArray fred(3); MyArray suzie(5); MyArray sam; fred.FillArray(-2); fred.PrintArray(); suzie.FillArray(3.25); suzie.PrintArray(); sam.FillArray(); sam.PrintArray(); }