Answers for "cpp apend to 2 vector"

C++
11

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());
Posted by: Guest on January-13-2020
-2

how to append two vectors in c++

std::vector<int> AB = A;
AB.insert(AB.end(), B.begin(), B.end());
Posted by: Guest on June-16-2020

Browse Popular Code Answers by Language