用C语言将字符串中的小写字母转换为对应的大写字母其他字符不变部分源程序给出
时间: 2024-03-02 17:51:24 浏览: 68
c语言将字符串中的小写字母转换成大写字母
5星 · 资源好评率100%
以下是将字符串中的小写字母转换为大写字母的C语言源代码:
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char str[100];
int i = 0;
printf("Enter a string: ");
fgets(str, sizeof(str), stdin);
while (str[i]) {
str[i] = toupper(str[i]);
i++;
}
printf("Uppercase string: %s", str);
return 0;
}
```
代码解释:
1. 首先,我们定义了一个字符串 `str` 和一个整数变量 `i`,用于遍历字符串。
2. 然后,我们使用 `fgets` 函数从标准输入中读入字符串。
3. 接着,我们使用 `toupper` 函数将字符串中的小写字母转换为大写字母。`toupper` 函数是 `ctype.h` 头文件中的一个函数,它接受一个字符作为参数,并将它转换为对应的大写字母。如果字符不是小写字母,则原样返回。
4. 最后,我们打印输出转换后的字符串。
注意:此代码假设输入的字符串不超过100个字符。如果输入的字符串超过100个字符,可能会导致缓冲区溢出。
阅读全文