declare size of 2d vector c++ code example

Example 1: how to make a 2d vector in c++

// Create a vector containing n 
//vectors of size m, all u=initialized with 0
vector > vec( n , vector (m, 0));

Example 2: how to get size of 2d vector in c++

myVector[
  Vector[0, 4, 2, 5],
  Vector[1, 4, 2]
];

/*When you call for myVector[1].size() it would return 3 and [0] would return 4.

For the amount of rows (int vectors) in the 2d vector, you can just use myVector.size()

You can run this to see it in actions*/

Example 3: size of a matrix using vector c++

// finding size of a square matrix
myVector[0].size();

Example 4: initialising 2d vector

// Initializing 2D vector "vect" with 
// values 
vector > vect{ { 1, 2, 3 }, 
                           { 4, 5, 6 }, 
                           { 7, 8, 9 } };

Tags:

Misc Example