isprint

 

書式
int isprint(int c);

機能
印字可能文字(0x20-0x7e)かどうか判定する。

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

ヘッダーファイル
ctype.h

 

使用例

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