// array2d.cpp // implements dynamic allocation of 2d array #include using namespace std; int main() { int rows=5; int columns=4; double **xyz; int r, c; xyz= new double *[rows]; for(int i=0; i> r; cout << "enter col: " ; cin >> c; cout <<"*(*(list+r)+c) = " << *(*(xyz+r)+c) << endl; cout <<"list[r][c] = " << xyz[r][c] << endl; return 0; }