本帖最后由 易孟飞 于 2014-10-8 17:50 编辑
上码
void Method(int arrInt[][])
{
for(int i=0;i<3;i++) for(int j=0;j<3;j++)
printf("%d",arr[j]);
}
void main
(
int arr[3][3]={1,2,3,4,5,6,7,8,9}
Method(arr);//打印的结果将会乱七八糟
)
//不但是C,包括C++,OC都有这个问题,(总之只要是使用指针的,都会有这个问题,C++里可以用引用避免)
|