isgraph() 函數(shù)用來檢測一個(gè)字符是否是圖形字符。
具有圖形表示的字符是已知的圖形字符。
isgraph()檢查字符是否為圖形字符。如果傳遞給isgraph()的參數(shù)是圖形字符,則它將返回非零整數(shù)。如果不是,則返回0。
此函數(shù)在ctype.h 頭文件中定義
int isgraph(int argument);
isgraph()函數(shù)采用單個(gè)參數(shù)并返回整數(shù)。
當(dāng)將字符作為參數(shù)傳遞時(shí),將傳遞字符的相應(yīng)ASCII值,而不是傳遞該字符本身。
#include <stdio.h> #include <ctype.h> int main() { char c; int result; c = ' '; result = isgraph(c); printf("當(dāng)%c被傳遞給isgraph()時(shí) = %d\n", c, result); c = '\n'; result = isgraph(c); printf("當(dāng)%c被傳遞給isgraph()時(shí) = %d\n", c, result); c = '9'; result = isgraph(c); printf("當(dāng)%c被傳遞給isgraph()時(shí) = %d\n", c, result);
輸出結(jié)果
當(dāng) 被傳遞給isgraph()時(shí) = 0 當(dāng) 被傳遞給isgraph()時(shí) = 0 當(dāng) 9 被傳遞給isgraph()時(shí) = 1
#include <stdio.h> #include <ctype.h> int main() { int i; printf("C編程中的所有圖形字符為: \n"); for (i=0;i<=127;++i) { if (isgraph(i)!=0) printf("%c ",i); } return 0; }
輸出結(jié)果
C編程中的所有圖形字符為: ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~