gpt4 book ai didi

c - 如何在 C 中将动态 int 数组元素初始化为 0

转载 作者:太空狗 更新时间:2023-10-29 16:57:43 24 4
gpt4 key购买 nike

我创建了一个动态数组,我需要将所有成员初始化为 0。这在 C 中如何完成?

   int* array;
array = (int*) malloc(n*sizeof(int));

最佳答案

在这种情况下,您将使用 calloc():

array = (int*) calloc(n, sizeof(int));

可以安全地假设所有系统现在都将全零位作为零的表示。

§6.2.6.2 保证这个工作:

For any integer type, the object representation where all the bits are zero shall be a representation of the value zero in that type.

也可以结合使用 malloc() + memset(),但原因在 comments of this answer 中讨论过, 使用 calloc() 可能更有效。

关于c - 如何在 C 中将动态 int 数组元素初始化为 0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8773346/

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