Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

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));
Source by www.techiedelight.com #
 
PREVIOUS NEXT
Tagged: #initialize #vector #ints
ADD COMMENT
Topic
Name
6+4 =