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