Answers for "creating vector array in c++ of given size"

C++
2

c++ initialize vector of vector with size

vector<vector<int>> v(10, vector<int>(10));
Posted by: Guest on May-24-2021
1

size of a matrix using vector c++

// finding size of a square matrix
myVector[0].size();
Posted by: Guest on June-25-2020
-1

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;
Posted by: Guest on July-15-2020

Browse Popular Code Answers by Language