arr.pushback code example
Example 1: how to append an element to an array in cpp
std::vector<std::string> x = {"a", "b", "c"};
x.push_back("d");
Example 2: .push_back function c++
(Things).push_back(Items)
std::vector<std::string> x = {"a", "b", "c"};
x.push_back("d");
(Things).push_back(Items)