C语言字符串小写变大写
时间: 2023-06-10 14:03:46 浏览: 118
可以使用C语言里面的toupper()函数将小写字母转化为大写字母。具体代码如下:
```
#include <stdio.h>
#include <ctype.h>
int main()
{
char str[100];
printf("请输入一个字符串:");
gets(str);
int i=0;
while(str[i])
{
str[i] = toupper(str[i]);
i++;
}
printf("转换后的字符串:%s", str);
return 0;
}
```
这段代码读入一个字符串,然后将字符串中的每个小写字母转化为大写字母,最后输出转换后的字符串。
相关问题
c语言字符串小写转大写程序
下面是一个 C 语言字符串小写转大写的示例程序:
```c
#include <stdio.h>
#include <ctype.h>
void to_upper(char *str) {
while (*str) {
*str = toupper(*str);
str++;
}
}
int main() {
char str[100];
printf("请输入一个字符串:");
fgets(str, sizeof(str), stdin);
to_upper(str);
printf("转换后的字符串为:%s", str);
return 0;
}
```
程序中使用了 `toupper()` 函数将字符串中的小写字母转成大写字母。函数 `to_upper()` 接受一个指向字符串的指针,然后遍历字符串中的每个字符,将小写字母转成大写字母。 `main()` 函数中获取用户输入的字符串,调用 `to_upper()` 函数将其转换成大写字母,并输出结果。
c语言字符串小写字母变大写
可以使用C语言中的toupper()函数将字符串中的小写字母转换为大写字母。下面是一个简单的示例代码:
```c
#include <stdio.h>
#include <ctype.h>
#include <string.h>
int main() {
char str[] = "hello world";
int len = strlen(str);
for(int i = 0; i < len; i++) {
if(islower(str[i])) {
str[i] = toupper(str[i]);
}
}
printf("转换后的字符串为:%s", str);
return 0;
}
```
输出结果为:
```
转换后的字符串为:HELLO WORLD
```
这里使用了islower()函数判断字符是否为小写字母。如果是,则使用toupper()函数将其转换为大写字母。
阅读全文