c++ declare a vector\ code example
Example 1: how to initialize vector in c++ with all elements 0
vector<int> arr(10,0);
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);