C ctype isgraph() 函数
示例
检查字符是否具有图形表示
char c = '#';
if (isgraph(c)) {
printf("%c has a graphical representation", c);
} else {
printf("%c does not have a graphical representation", c);
}
自己试试 »
定义和用法
如果字符是图形表示,则 isgraph()
函数返回一个非零值(等效于布尔值 true)。
图形字符的示例包括:! " # $ % & ' ( ) * 等。
isgraph()
函数在 <ctype.h>
头文件中定义。
语法
int isgraph(int c);
参数值
参数 | 描述 |
---|---|
c | 必需。字符的 ASCII 值或实际字符 |
技术细节
返回值 | 一个 int 值,如果字符具有图形表示,则为非零值(等效于布尔值 true)。否则返回 0(等效于布尔值 false)。 |
---|