gpt4 book ai didi

c - 结构数组函数参数

转载 作者:行者123 更新时间:2023-12-04 10:13:56 25 4
gpt4 key购买 nike

我有以下声明代码:

struct coord {
int x;
int y;
}
void rotateFig(struct coord[10][10]);

我需要实现rotateFig。我尝试从以下开始:

void rotateFig(struct coord[10][10] c)
{
//code
}

我无法编译它 - 可能我在函数定义中传递 c 的方式不正确。我应该如何使用给定的签名传递 c。谢谢

最佳答案

使用这个定义:

void rotateFig(struct coord c[10][10])
{
//code
}

数组是实际参数,所以维度必须在它的名字之后,而不是之前。

关于c - 结构数组函数参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8768828/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com