I'm working on dynamic arrays. I found source code in C. Please help me convert this line of code from C to C++. Thanks so much for the help.
row and col are variables
row and col are variables
Code:
arr=(int**)malloc(sizeof(int)*row*col);
Comment