Could Someone explain what really happening in the below mentioned array. I have no idea what really the statement inside the for-loop does.Could someone Explain
#include<iostream>
using namespace std;
int main(){
int m=3,n=2;
int *arr[m];
for(int i=0;i<m;i++){
arr[i]=new int[n];
}
return 0;
}