gpt4 book ai didi

C 查找静态数组大小

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

static char* theFruit[] = {
"lemon",
"orange",
"apple",
"banana"
};

通过查看这个数组,我知道大小是 4。如何以编程方式在 C 中找到此数组的大小?我不想要以字节为单位的大小。

最佳答案

sizeof(theFruit) / sizeof(theFruit[0])

注意 sizeof(theFruit[0]) == sizeof(char *),一个常量。

关于C 查找静态数组大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10283375/

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