在线代码编辑器: http://codepad.org/
1、*指针
void display(int *arr, const int row, const int col)
{
for(int i=; i < row ; ++i)
{
for(int j=; j < col; ++j)
{
cout<< *(arr + i*col + j)<<" ";
}
cout<<endl;
}
cout<<endl;
}
2、**指针
void display2(int **arr, const int row, const int col)
{
for(int i=; i < row ; ++i)
{
for(int j=; j < col ; ++j)
{
cout<< *((int*)arr + i * col + j) << " ";
}
cout<<endl;
}
cout<<endl;
}