gpt4 book ai didi

计算字符串长度c

转载 作者:行者123 更新时间:2023-11-30 20:57:01 24 4
gpt4 key购买 nike

int string_length(char str[])
{
int i;
for(i=200; i>=0; i--)
{
//printf("%c \n",str[200]);
printf("%d",i);
if(str[i] !=NULL)
{
return(i);
}
}
}

如果字符串是 :eee rrr ,我想返回正确的字符串大小:它应该返回 7,但总是返回 200

最佳答案

这是因为您传入的字符串范围之外的数据是随机的,并且大多数不是'\0'

永远不要越界访问数组,它会导致未定义的行为。如果您想创建自己的函数,则需要从头开始。

strlen 有什么问题吗? ?

关于计算字符串长度c,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16793783/

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