为什么不像普通数组那样在函数中声明2D数组参数?
void F(int bar[]){} //Ok void Fo(int bar[][]) //Not ok void Foo(int bar[][SIZE]) //Ok
为什么需要声明列的大小?
c++
c++ ×1