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

char* strcaps(char* s)
{
        while (*s != '\0')
        {
                toupper(*s);
                s++;
        }
        return s;
}

.

int main()
{
        char makeCap[100];
        printf("Type what you want to capitalize: ");
        fgets(makeCap, 100, stdin);
        strcaps(makeCap);
        return 0;
}

这个程序编译得很好,但是当我运行它时,它没有输出任何东西。我在这里想念什么?

4

3 回答 3

1

你没有打印任何东西!

打印的返回值toupper()

        printf("%c",toupper(*s));
于 2014-03-23T23:03:03.030 回答
0

你不打印任何东西,所以它当然不会输出任何东西。

于 2014-03-23T23:02:46.103 回答
0
char* strcaps(char* s){
    char *p;
    for (p=s; *p; ++p)
        *p = toupper(*p);//maybe you want to change the original
    return s;//your cord : return address point to '\0'
}
...
//main
printf("%s", strcaps(makeCap));
于 2014-03-23T23:06:20.663 回答