c++ instanciate vector with values code example
Example 1: how to initialize vector
vector<int> vect{ 10, 20, 30 };
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);