in this code why you write
int**arr=new int*[n];
this lines whats indicate and without pointer how to write this line
for(int i=0 ; i<n ; i++)
{
arr[i]=new int[m];
}
what is the work in this code
int main(int argc ,char const *argv[ ])
why u write after main i.e. inside main parenthesis