declare 2d vector with static size code example
Example: c++ 2D vectors
int main()
{
int row = 5; // size of row
int colom[] = { 5, 3, 4, 2, 1 };
vector<vector<int> > vec(row); // Create a vector of vector with size equal to row.
for (int i = 0; i < row; i++) {
int col;
col = colom[i];
vec[i] = vector<int>(col); //Assigning the coloumn size of vector
for (int j = 0; j < col; j++)
vec[i][j] = j + 1;
}
for (int i = 0; i < row; i++) {
for (int j = 0; j < vec[i].size(); j++)
cout << vec[i][j] << " ";
cout << endl;
}
}