isalpha

 

書式
int isalpha(int c);

機能
英字(a-z,A-Z)かどうか判定する。

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

ヘッダーファイル
ctype.h

 

使用例

char c = 'c';
int b;
b = isalpha(c)