Lab 4: Managed Array Additions
Due Wednesday, February 19
Starting with the dynamic array demo from class (dynamic_array.cpp), add the following features:
- C++11-style for loop support. These are the loops that look like "for(auto i : mycollection)". Refer to the linked list demo for an example of how to do this.
- Overload the insertion operator so the array can be directly printed. It should print out each item in the array, in order.
Add some sort of code to demonstrate that your new features work.