how to append a vector to another vector in c++ code example
Example 1: how to append one vector to another c++
vector<int> a;
vector<int> b;
a.insert(a.end(), b.begin(), b.end());
Example 2: Appending a vector to a vector in C++
Input:
vector<int> v1{ 10, 20, 30, 40, 50 };
vector<int> v2{ 100, 200, 300, 400 };
v1.insert(v1.end(), v2.begin(), v2.end());
Output:
v1: 10 20 30 40 50 100 200 300 400
v2: 100 200 300 400
Example 3: appending a vector in vector
a.insert(a.end(), b.begin(), b.end());
Example 4: how to append to a vector c++
vector <int> vi;
vi.push_back(1);
vi.push_back(2);