在C中大写字符串

时间:2016-09-11 11:45:07

标签: c eclipse

enter image description here

该程序应该从用户动态获取一个字符串,然后将其大写,但是当我在键入字符串后运行它时似乎没有发生任何事情。

1 个答案:

答案 0 :(得分:0)

如何大写C字符串。

#include <stdio.h>
#include <ctype.h>
int main() {
    int i = 0;
    char str[] = "foobar";
    while(str[i]) {
        putchar (toupper(str[i]));
        i++;
    }
    return(0);
}

测试online