gpt4 book ai didi

c - 关于 typedef 结构的数组

转载 作者:行者123 更新时间:2023-11-30 18:44:26 26 4
gpt4 key购买 nike

我有一个 typedef 结构体,表示一个包含 3 个整数的圆; x y 和半径我被告知创建一个由五个圆 C5 组成的数组,使得圆 Ci 具有 x=i,y=i,r=i

如何将其存储在数组中?

最佳答案

您需要创建一个像这样的数组:

type_name circles[5];

其中“type_name”是 typedef 结构的名称。然后您可以将值分配给数组中的插槽,如下所示:

// set the circle in slot 2 to have the values of x, y, and r
circles[2].x = x;
circles[2].y = y;
circles[2].r = r;

其中 x 的类型为“type_name”。

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

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