Maxsumsubmatrix boiler plate code

sir i am not able to understand the code sir made earlier in main . he started the define the maxsumsubmatrix function.
i am having doubt that is :
**arr ,
new int .
here is the code sir made earlier .

hello @tejuschaturvedi0

    int **arr=new int*[n];
    for (int i=0;i<n;i++){
        arr[i]= new int[m];
    }

here we are dynamically allocating 2d array. these two lines will declare a N * M matrix.

read about dynamic memory allocation for clarity

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.