C++ 二维数组作为形参传递使用实例

在线代码编辑器: 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;
}
上一篇:网络编程懒人入门(十):一泡尿的时间,快速读懂QUIC协议


下一篇:Thinking in Java 第二章学习笔记