gpt4 book ai didi

c - 在 C : I want to take a mix of characters and convert them to lower case

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

为什么我的代码不接受 argv[] 字符串?我需要做什么来修复它?我希望能够同时输入小写和大写字母,最后在数组中只包含小写字母。感谢您的帮助。

#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>

int main(int argc, char argv[])
{

char word[30]= atoi(argv[1]); // here is the input
for (int i = 0; word[i]; i++)
word[i] = tolower(word[i]);

printf("Here is the new word: %s\n", word);
return 0;
}

最佳答案

int main(int argc, char argv[])

应该是:

int main(int argc, char *argv[])

此外,strtol 是比 atoi 更好的选择,因为 strtol 可以更好地处理故障。

关于c - 在 C : I want to take a mix of characters and convert them to lower case,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13328044/

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