c语言将字符串中的大写字母转换为对应的小写字母
时间: 2023-12-12 07:06:09 浏览: 107
C语言——大写字母转为小写字母
可以使用C语言中的标准库函数`tolower()`将字符串中的大写字母转换为小写字母。下面是一个示例代码:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char str[] = "HELLO WORLD";
int i;
for(i = 0; str[i]; i++){
str[i] = tolower(str[i]);
}
printf("转换后的字符串为: %s", str);
return 0;
}
```
输出结果为:
```
转换后的字符串为: hello world
```
在上面的代码中,我们使用了`tolower()`函数将字符串中的大写字母转换为小写字母。在循环中,我们遍历字符串中的每个字符,并调用`tolower()`函数将其转换为小写字母。最后打印出转换后的字符串。
阅读全文