intailizes vector c ++ code example
Example 1: how to initialize a vector in c++
std::vector<type> name;
Example 2: declare vector of size n in c++
#include <vector>
auto n = 20
// create a vector with n=20 integer elements
std::vector<int> arr(n);