#include #include using namespace std; int main () { vector intVec; // display initial size and capacity of vector (both = 0) cout << "Initial size of vector: " << intVec.size() << endl; cout << "Initial capacity of vector: " << intVec.capacity() << endl; // add three values to the end of the vector intVec.push_back(5); intVec.push_back(4); intVec.push_back(3); // display current size and capacity of vector cout << "Current size of vector: " << intVec.size() << endl; cout << "Current capacity of vector: " << intVec.capacity() << endl; }