函数名: isspace
头文件:<ctype.h>
函数原型: int isspace(int ch);
功 能: 判断字符是否为空白字符
参数: int ch 待检查的字符
返回值: ch不是空白字符 返回0 , ch是空白字符 返回非0
程序例: 判断输入的字符是否为标点符号
#include<ctype.h>#include<stdio.h>intmain(){charchprintf(inputacharacter:);scanf(%c,&ch);if(isspace(ch)){printf(%cisspace.,ch);}else{printf(%cisnotspace.,ch);}putchar('n');return0;}
运行结果:
inputacharacter:isspace.