gpt4 book ai didi

c - 在 c 中查找数组中元素数量的问题

转载 作者:太空宇宙 更新时间:2023-11-04 08:05:14 26 4
gpt4 key购买 nike

int input[] = {4, 5, 6, 7, 8};
printf("size of input is %d\n", sizeof(input));

总是给我 20 个元素!

有什么线索吗?

最佳答案

它打印数组的大小,我想你想要数组中的元素数量。在我的电脑中,int 大小是 4 个字节。因此,总大小为 5*4=20 字节。如果你想要数组中的元素数量,你可以写

int input[] = {4, 5, 6, 7, 8};
int n = sizeof(input) / sizeof(input[0]);
printf("number of input is %d\n",n);

关于c - 在 c 中查找数组中元素数量的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43301674/

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