Dotcpp  >  编程教程  >  ctype.h头文件  >  C语言isgraph()函数:判断字符是否除空格外的可打印字符

C语言isgraph()函数:判断字符是否除空格外的可打印字符

点击打开在线编译器,边学边练

函数名: isgraph

头文件:<ctype.h>

函数原型:  int isgraph(int ch);

功 能:  判断字符是否除空格外的可打印字符

参数: int ch  待检查的字符

返回值: ch不是除了空格外的可打印字符  返回0 , ch是除了空格外的可打印字符    返回非0


程序例:判断输入的字符是否为除了空格外的可打印字符

#include<ctype.h>
#include<stdio.h>
int main(){
	char ch;
	printf("input a character:");
	scanf("%c",&ch);
	if(isgraph(ch)){
		printf("%c is graph.",ch);
	}else{
		printf("%c is not graph.",ch);
	}	
	putchar('\n');		
	return 0;	
}

运行结果:

input a character:g
g is graph.




本文固定URL:https://www.dotcpp.com/course/438

C语言函数库
assert.h头文件
ctype.h头文件
float.h头文件
io.h头文件
math.h头文件
mem.h头文件
setjmp.h头文件
stdio.h头文件
stdlib.h头文件
sigal.h头文件
string.h头文件
time.h头文件
Dotcpp在线编译      (登录可减少运行等待时间)