c语言字符串小写字母变大写
时间: 2023-06-22 07:45:31 浏览: 125
c语言将字符串中的小写字母转换成大写字母
5星 · 资源好评率100%
可以使用C语言中的toupper()函数将字符串中的小写字母转换为大写字母。下面是一个简单的示例代码:
```c
#include <stdio.h>
#include <ctype.h>
#include <string.h>
int main() {
char str[] = "hello world";
int len = strlen(str);
for(int i = 0; i < len; i++) {
if(islower(str[i])) {
str[i] = toupper(str[i]);
}
}
printf("转换后的字符串为:%s", str);
return 0;
}
```
输出结果为:
```
转换后的字符串为:HELLO WORLD
```
这里使用了islower()函数判断字符是否为小写字母。如果是,则使用toupper()函数将其转换为大写字母。
阅读全文