C语言 <ctype.h> isgraph() 函数
-
描述
C库函数int isgraph(int c)检查字符是否具有图形表示。带有图形表示的字符是所有可以打印的字符,除了空格字符(如' '),它不被认为是isgraph字符。 -
声明
以下是isgraph()函数的声明。参数- c - 这是要检查的字符。
-