About toupper()

// toupper.c
#include <stdio.h>
#include <string.h>
#include <ctype.h>
int main()
{
    char *s="Hello, World!";
    int i;
    //clrscr(); // clear screen
    printf("%s\n",s);
    for(i=0;i<strlen(s);i++)
    {
        putchar(toupper(s[i]));
    }
    getchar();
    return 0;
}
posted @ 2017-02-26 20:02  loanhicks  阅读(177)  评论(0编辑  收藏  举报