gpt4 book ai didi

c - 当我已经声明变量时发生未声明的标识符错误

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

我从下面的代码中得到了一个未声明的标识符错误,但我在这两种情况下都明确声明了变量“length”。我做错了什么?

int startWordLenRec(char s[]) {
if (isLetter(s) == false){
int length = 0;
}
else if{
int length = 1 + startWordLenRec(s+1);
}
return length;
}

最佳答案

声明在您声明它的范围内是局部的。因此,如果您在 {} 中声明它,则它不能在结束 } 之后使用。

int startWordLenRec(char s[]) {
int length;
if (isLetter(s) == false){
length = 0;
}
else if{
length = 1 + startWordLenRec(s+1);
}
return length;
}

当然,你也可以直接return 0;,不需要单独的变量。

关于c - 当我已经声明变量时发生未声明的标识符错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1737805/

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