// e12_4.cpp // http://www.buzluca.info/oop //demonstrates insert(), erase() **/ #include #include using namespace std; int main() { int arr[] = { 100, 110, 120, 130 }; // an array of ints vector v(arr, arr+4); // initialize vector to array int j; cout << "\nBefore insertion: "; for(j=0; j