c语言字符串大写转小写
时间: 2023-11-09 13:06:31 浏览: 175
C语言实现大写转小写
4星 · 用户满意度95%
C语言中可以使用库函数`tolower()`将大写字母转换为小写字母。可以使用循环遍历字符串中的每个字符,然后将大写字母转换为小写字母。以下是一个示例代码:
```c
#include <stdio.h>
#include <ctype.h>
void toLower(char *str) {
int i = 0;
while (str[i]) {
str[i] = tolower(str[i]);
i++;
}
}
int main() {
char str[] = "HELLO WORLD";
printf("Before: %s\n", str);
toLower(str);
printf("After: %s\n", str);
return 0;
}
```
输出结果为:
```
Before: HELLO WORLD
After: hello world
```
阅读全文