isupper

 

書式
int isupper(int c);

機能
英大文字(A-Z)かどうか判定する。

戻り値
真なら0以外、偽なら0。

ヘッダーファイル
ctype.h

 

使用例

char c = 'C';
int b;
b = isupper(c)