how to declare vector of size n code example
Example 1: c++ initialize vector of vector with size
vector<vector<int>> v(10, vector<int>(10));
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);