C语言字符串小写变大写
时间: 2023-06-10 10:03:42 浏览: 73
C语言之实现字符串小写变大写的实例
5星 · 资源好评率100%
你可以使用C语言内置的toupper函数将字符串中的小写字符转换为大写字符。下面是一个简单的例子:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char str[] = "hello, world!";
int i;
for (i = 0; str[i] != '\0'; i++) {
str[i] = toupper(str[i]);
}
printf("转换后的字符串:%s\n", str);
return 0;
}
```
输出:
```
转换后的字符串:HELLO, WORLD!
```
阅读全文