predefined size vector code example

Example 1: initialize 3d vector c++

vector<vector<vector<double>>> f(3, vector<vector<double>>(4, vector<double>(5)));

Example 2: vectors c++ set the size

#include <iostream>
#include <vector>

using namespace std;

int main(void) {
   vector<int> v;

   cout << "Initial vector size = " << v.size() << endl;

   v.resize(5, 10);
   cout << "Vector size after resize = " << v.size() << endl;

   cout << "Vector contains following elements" << endl;
   for (int i = 0; i < v.size(); ++i)
      cout << v[i] << endl;

   return 0;
}

Tags:

Cpp Example