gpt4 book ai didi

c - 如何在c中的数组中使用float

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

例如,我想在数组中使用浮点值,

array[4];

array[0] = 3.544
array[1] = 5.544
array[2] = 6.544
array[3] = 6.544

float array[] (is giving me error)

但是我不知道如何使用帮助我,我是一个c初学者

最佳答案

如果要以这种方式定义数组 float ,则必须指定大小:

float array[4];

您可以定义没有大小的数组。但应该是这样的:

float array[] = {3.544, 5.544, 6.544, 6.544};

有关更多详细信息,请参阅以下主题:How to initialize all members of an array to the same value?

关于c - 如何在c中的数组中使用float,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16647702/

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