Vector declaration

what this statement declare: vector< vector< int > > matrix(100, vector < int > (50, 100) )

It declares a 2D matrix of size 100X50. And each value in the matrix is 100.
vector< vector< int > > matrix(100, vector < int > (50, 100) )
vector< vector< int > > matrix(rows, vector < int > (columns, default value) )

1 Like

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.