instantiate vector c++ code example
Example 1: initialize vector of vector c++
#include <iostream>
#include <vector>
#define M 3
#define N 4
int main()
{
int default_value = 1;
std::vector<int> v(N, default_value);
std::vector<std::vector<int>> matrix(M, v);
return 0;
}
Example 2: how to create a vector in c++
#include <vector>
using namespace std;
int main()
{
vector<int> vect;
vect.push_back(10);
for (int x : vect)
cout << x << " ";
return 0;
}
Example 3: how to initialize a vector in c++
std::vector<type> name;