根据帖子,
将2D数组传递给C++函数
int array[10][10]; void passFunc(int a[][10]) // <---Notice 10 here { // ... } passFunc(array);
为什么编译器内部的观点需要更高的维度.
c c++
c ×1
c++ ×1