gpt4 book ai didi

c - tolower() 不工作

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

下面的代码片段用于将字符串转换为小写。

int main()
{
unsigned char s[] = "AbS.d_";

tolower(s);
printf("%s\n", s);

return 0;
}

我得到了 output作为:

AbS.d_

为什么字符串没有被转换?

最佳答案

tolower 接受 int 并返回降低后的 int。

这应该有效:

int i=0;
for(i=0; s[i]; i++)
{
s[i]=tolower(s[i]);
}

关于c - tolower() 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12145463/

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