c语言设计函数实现将一个字符串中小写字母转化为大写字母。
时间: 2023-11-18 09:03:47 浏览: 426
将一字符串中的小写英文字母改成大写。-c语言习题
可以使用C语言中的字符处理函数,比如toupper()函数,实现将一个字符串中小写字母转化为大写字母。
下面是一个示例代码:
```c
#include <stdio.h>
#include <ctype.h>
void toUpper(char *str) {
int i = 0;
while(str[i]) {
str[i] = toupper(str[i]);
i++;
}
}
int main() {
char str[100];
printf("请输入一个字符串:\n");
scanf("%s", str);
toUpper(str);
printf("转化后的字符串为:%s\n", str);
return 0;
}
```
在这个示例中,toUpper()函数使用了toupper()函数将字符串中的每个小写字母转化为大写字母。然后在主函数中,使用scanf()函数获取输入的字符串,调用toUpper()函数进行转化,最后输出转化后的字符串。
阅读全文