在C语言中,可以使用循环遍历字符串的每个字符,然后利用ASCII码的特性对大小写字母进行转换 #include<stdio.h> #include <ctype.h> // 提供toupper()和tolower()函数 void convertToUpperCase(char *str) { for (int i = 0; str[i]; i++) { str[i] = toupper(str[i]); } } void convertToLowerCa...