我使用Xcode工作,但现在我想学习和使用Visual Studio C++,我的第一个挑战是通过函数及其大小作为参数发送和排列,我该如何完成?
void Llena2(int R, int C, int (*XY)[C]); //in xcode
void Llena2(int R, int C, int (*XY)[C]); //error C2057: expected constant expression
//error C2466: cannot allocate an array of constant size 0
是否可以做一些类似于xcode的事情?提前致谢