isdigit

 

書式
int isdigit(int c);

機能
数字(0-9)かどうか判定する。

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

ヘッダーファイル
ctype.h

 

使用例

char c = '7';
int b;
b = isdigit(c)