c++ initialize vector with size code example

Example 1: c++ initialize a vector

#include <bits/stdc++.h> 
#include <vector> 
using namespace std; 
  
int main() 
{ 
// This vector initializes with the values: 10, 20, and 30
  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

// create a vector with 20 integer elements
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
// create a vector with n=20 integer elements
std::vector<int> arr(n);

Example 6: c++ vector initialize size

vector<Entry> array(1000);//size of 1000

Tags:

Cpp Example