小写字母转换为大写字母的c语言
时间: 2023-05-20 15:04:15 浏览: 79
用c语言将小写字母变大写字母
答案:
可以使用 C 语言中的 toupper() 函数将小写字母转换为大写字母。例如:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char c = 'a';
printf("Before: %c\n", c);
c = toupper(c);
printf("After: %c\n", c);
return 0;
}
```
输出:
```
Before: a
After: A
```
阅读全文