#include #include using namespace std; int main() { vector values(2); values[0] = 31; values[1] = 42; cout << "Length of array 'values' is " << values.size() << endl; cout << "values[0] = " << values[0] << endl; cout << "values[1] = " << values[1] << endl; // Now make the array grow by another value! values.push_back(53); cout << "Length of array 'values' is " << values.size() << endl; cout << "values[2] = " << values[2] << endl; return 0; }