how can we creat 2d dynamic array using vector.
2d vector dynamic array
@ankit_verma to make a m*n 2-d vector the syntax is
vector<vector<int>> v(m, vector<int>(n, 0));
it will initialise all the values with 0.
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.