add item to vector c++ code example
Example 1: c++ how to add something at the start of a vector
int main() {
std::vector<int> v{ 1, 2, 3, 4, 5 };
v.insert(v.begin(), 6);
}
Example 2: adding element in vector c++
vector_name.push_back(element_to_be_added);
Example 3: add to vector c++
// vector::push_back
int main ()
{
std::vector<int> myvector;
int myint;
std::cout << "Please enter some integers (enter 0 to end):\n";
do {
std::cin >> myint;
myvector.push_back (myint);
} while (myint);
std::cout << "myvector stores " << int(myvector.size()) << " numbers.\n";
return 0;
}