RosettaCodeData/Task/Collections/C++/collections-2.cpp
2023-07-01 13:44:08 -04:00

5 lines
169 B
C++

#include <vector>
std::vector<int> v; // empty vector
v.push_back(5); // insert a 5 at the end
v.insert(v.begin(), 7); // insert a 7 at the beginning