c++ initialize vector with size code example
Example 1: c++ initialize a vector
#include <bits/stdc++.h>
#include <vector>
using namespace std;
int main()
{
vector<int> vect{ 10, 20, 30 };
return 0;
}
Example 2: how to initialize vector
vector<int> vect{ 10, 20, 30 };
Example 3: c++ initialize size of 3d vector
vector<vector<vector<double>>> f(3, vector<vector<double>>(4, vector<double>(5)));
Example 4: c++ create vector of size
std::vector<int> arr(20);
for(int x = 0; x < 20; ++x)
arr[x] = x;
Example 5: declare vector of size n in c++
#include <vector>
auto n = 20
std::vector<int> arr(n);
Example 6: c++ vector initialize size
vector<Entry> array(1000);