C 語言標準函數庫分類導覽 - ctype.h toupper()

ctype.h 的函數 toupper() 將英文小寫字元回傳為大寫字元,若原本就是英文大寫字母,或非英文字母的字元,就會原封不動的回傳參數值。



以下程式將英文字串全部改為大寫字母
#include <stdio.h>
#include <ctype.h>

int main(void)
{
    char *t = "seeing is believing";
    char s[20];
    int i = 0;
    
    while (*t != '\0') {
        s[i] = toupper(*t);
        t++;
        i++;
    }
    
    printf("%s\n", s);
    
    return 0;
}

/* 《程式語言教學誌》的範例程式
    http://pydoing.blogspot.com/
    檔名:ctoupper.c
    功能:示範 ctype.h 中函數 toupper() 的使用
    作者:張凱慶
    時間:西元2010年6月 */


編譯後執行,結果如下



您可以繼續參考


沒有留言: