c语言怎么将字符串中的小写转换为大写
时间: 2024-05-14 16:17:45 浏览: 143
C语言程序设计-将字符串中的小写字母转换为对应的大写字母,其它字符不变;.c
5星 · 资源好评率100%
在C语言中,可以使用标准库函数 `toupper()` 将字符串中的小写字母转换为大写字母。具体操作步骤如下:
1. 引入头文件 `ctype.h`。
2. 使用 `toupper()` 函数将字符串中的字符逐一转换为大写字母。
下面是一个简单的示例代码:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char str[] = "hello world";
int i = 0;
while (str[i]) {
str[i] = toupper(str[i]);
i++;
}
printf("%s", str);
return 0;
}
```
输出结果为:
```
HELLO WORLD
```
在上述代码中,使用了 `toupper()` 函数将字符串中的小写字母转换为大写字母,并将转换后的字符串输出。
阅读全文