I need to create 2d array in c++.
I can\'t do it by int mas= new int[x][y]; or auto mas= new int[x][y]; I need to create an array dynamical
int mas= new int[x][y];
auto mas= new int[x][y];
int x,y; x =3; y = 5; int ** mas = new int*[x]; for (int i=0;i
I think something like this. Don't forget
for(int i=0;i
at the end.