如何在C中通过引用传递结构数组?
举个例子:
struct Coordinate {
int X;
int Y;
};
SomeMethod(Coordinate *Coordinates[]){
//Do Something with the array
}
int main(){
Coordinate Coordinates[10];
SomeMethod(&Coordinates);
扬帆大鱼
翻阅古今
慕工程0101907
相关分类