how to declare a vector of size n code example
Example 1: 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 2: initialise 2d vector in c++
vector<vector<int> > vect{ { 1, 2, 3 },
{ 4, 5, 6 },
{ 7, 8, 9 } };
Example 3: c++ create vector of size
std::vector<int> arr(20);
for(int x = 0; x < 20; ++x)
arr[x] = x;
Example 4: declare vector of size n in c++
#include <vector>
auto n = 20
std::vector<int> arr(n);