C库函数 int toupper(int c)转换给定的字母为大写。
    #include
    int main(){
    char a=’a’;
    a=toupper(a);
    putchar(a);
    return 0;
    }