gpt4 book ai didi

c - 无法获取整数数组的长度

转载 作者:太空宇宙 更新时间:2023-11-04 00:52:20 25 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
length of array in function argument

我正在尝试获取整数数组的长度,但我没有得到正确的答案

void main()
{
int x[]={33,55,77};
printf("%d",getLength(x));//outputs 1
printf("%d",sizeof(x)/sizeof(int));//outputs 3
}

int getLength(int *inp)
{
return sizeof(inp)/sizeof(int);
}

那么为什么 getLength 返回值 1 而不是 3 呢?

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