この関数の目的
ispunct()は、文字が句読点文字かどうか判定する。
定義
#include <ctype.h> int ispunct(int c);
働き
cが' '(スペース)でなくisalnum()が真を返さない表示可能文字である場合に真を返す。
ヘッダファイル一覧に戻る <ctype.h>に戻る