isgraph(測試字元是否為可列印字元)。
基本介紹
- 中文名:isgraph
- 相關函式:isprint
- 表頭檔案:#include <ctype.h>
- 定義函式:int isgraph (int c)
簡介,其他信息,
簡介
isgraph(測試字元是否為可列印字元)
其他信息
相關函式
isprint
表頭檔案
#include <ctype.h>
定義函式
int isgraph (int c)
函式說明
檢查參數c是否為可列印字元,若c所對映的ASCII碼可列印,且非空格字
符則返回TRUE。
返回值
若參數c為可列印字元,則返回TRUE,否則返回NULL(0)。
附加說明
此為宏定義,非真正函式。
範例 /* 判斷str字元串中哪些為可列印字元*/
#include<ctype.h>int main(){ char str[] = "a5 @;"; int i; for(i=0; str[i]!=0; i++) if(isgraph(str[i])) printf("str[%d] is printable character:%c\n", i, str[i]); return 0;}
執行
str[0] is printable character:a
str[1] is printable character:5
str[3] is printable character:@
str[4] is printable character:;