Horje
how to append to a vector c++ Code Example
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());
Appending a vector to a vector in C++
Input:
    vector<int> v1{ 10, 20, 30, 40, 50 };
    vector<int> v2{ 100, 200, 300, 400 };

    //appending elements of vector v2 to vector v1
    v1.insert(v1.end(), v2.begin(), v2.end());

    Output:
    v1: 10 20 30 40 50 100 200 300 400
    v2: 100 200 300 400
how to append to a vector c++
//vector.push_back is the function. For example, if we want to add
//3 to a vector, it is just vector.push_back(3)
vector <int> vi;
vi.push_back(1); //[1]
vi.push_back(2); //[1,2]




Cpp

Related
c++ natural log Code Example c++ natural log Code Example
height of the tree Code Example height of the tree Code Example
Counting Sort C++ Code Example Counting Sort C++ Code Example
c++ find minimum value in vector Code Example c++ find minimum value in vector Code Example
delete file c Code Example delete file c Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11