-3

如何使用该toupper函数转换字符串?这没有用。

#include<stdio.h>
#include<string.h>
#include<ctype.h>

int main(){
    char ch[20];
    printf("\nEnter Your String :");
    gets(ch);

    int i=0;
    for(i=0;ch[i] !='\0';i++)
    {
        putchar(toupper(ch[i]));
        putchar(ch[i]);
    }

    return 0;
}

这个程序输出大写和小写我只想大写输出。我无法捕捉到我的逻辑错误。请帮我弄清楚逻辑概念

4

1 回答 1

0

我认为这会起作用

for(i=0;ch[i] !='\0';i++)
{
    ch[i]=toupper(ch[i]);
}

//print the string with uppercase
于 2012-09-15T10:55:42.577 回答