/********************************************************************* Author: Dana Vrajitoru, IUSB, CS Class: C243, Fall 2019 File name: main.cc Last updated: August 26, 2019. Description: Testing the class MyArray. **********************************************************************/ #include "MyArray.h" #include using namespace std; #include // main function int main() { // create an object of type MyArray with a capacity of 10 MyArray a(10); // initialize all its elements with the index for (int i=0; i