push begin vector c++ code example
Example 1: how to append one vector to another c++
vector<int> a;
vector<int> b;
// Appending the integers of b to the end of a
a.insert(a.end(), b.begin(), b.end());
Example 2: c++ how to add something at the start of a vector
#include <vector>
int main() {
std::vector<int> v{ 1, 2, 3, 4, 5 };
v.insert(v.begin(), 6);
}