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