用c语言转换字母大小写
时间: 2023-05-11 10:02:54 浏览: 246
C语言实现字母大小写转换的方法
可以使用C语言中的toupper和tolower函数来转换字母的大小写。toupper函数将小写字母转换为大写字母,而tolower函数将大写字母转换为小写字母。以下是一个简单的示例代码:
#include <stdio.h>
#include <ctype.h>
int main() {
char str[] = "Hello World!";
int i = 0;
while (str[i]) {
putchar(toupper(str[i]));
i++;
}
return 0;
}
这个程序将输出"HELLO WORLD!",因为它将字符串中的所有字母都转换为大写字母。如果要将字母转换为小写字母,只需将toupper函数替换为tolower函数即可。
阅读全文