C語言isupper()函數:判斷一個字元是否是大寫字母

2020-07-16 10:04:52
C語言 isupper() 函數用來判斷一個字元是否是大寫字母。

標頭檔案:ctype.h

語法/原型:

int isupper(int c);

引數 c 表示要檢測的字元。

返回值:返回值為非 0(真)表示 c 是大寫字母,返回值為 0(假)表示 c 不是大寫字母。

【範例】使用C語言 isupper() 函數判斷字串中的字元是否是大寫字母,如果是,那麼轉換為小寫字母。
#include <stdio.h>
#include <ctype.h>
int main ()
{
    int i = 0;
    char str[] = "C++ Java Python C# Linux Golang Shelln";
    char c;
    while(str[i])
    {
        c = str[i];
        if(isupper(c)) c = tolower(c);
        putchar(c);
        i++;
    }
    return 0;
}
執行結果:
c++ java python c# linux golang shell