Answers for "c++ 2d vector of 0"

C++
8

initialize 2d vector of ints c++

auto M = 4;	// num of rows
auto N = 3; // num of cols in each row
auto default_value = 1; // default value of all int elements
std::vector<std::vector<int>> matrix(M, std::vector<int>(N, default_value));
Posted by: Guest on September-16-2020
0

2d array of zeros c++

const int N = 10; int myarray[N][N] = {0};
Posted by: Guest on July-24-2021

Browse Popular Code Answers by Language