gpt4 book ai didi

字符数组赋值不起作用

转载 作者:行者123 更新时间:2023-11-30 19:17:38 24 4
gpt4 key购买 nike

以下代码将字符串中的所有小写字符转换为大写。但是,它不会用计算的大写字符替换小写字符。

static char * strtoupper(char * string, int size)
{
char c;
for(int i = 0; i< size; i++)
{
if(islower((int) (*string)) != 0)
{
c = (char) toupper(*string);
*string = c;
}
++string;
}
return string;
}

最佳答案

您正在返回递增的指针,您不需要返回任何内容,只需修改适当的字符串即可

void strtoupper(char *string)
{
while (*string != '\0')
{
*string = toupper(*string);
++string;
}
}

如果您想传递字符串的长度,例如它不是以 null 结尾的

void strtoupper(char *string, size_t size)
{
size_t i;
for (i = 0 ; i < size ; ++i)
string[i] = toupper(string[i]);
}

关于字符数组赋值不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27886530/

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