Answers for "the statement vector vector int matrix(100 vector int (50 100) ) declares"

C++
0

the statement vector vector int matrix(100 vector int (50 100) ) declares

vector < int > (50, 100) declares a vector X of type int with 50 elements each initialized to 100 and matrix consists of 100 vectors of type int each equal to X. The web browser is considering the < int > without spaces between < and int and > as some HTML tag.
Posted by: Guest on September-06-2020

Browse Popular Code Answers by Language