此函数接受一个字符的参数并检查该字符是否为打印(可打印)字符。如果字符不是打印字符,则函数返回 ‘zero’,如果字符是打印字符,则返回 ‘one’。
使用这个函数相当简单,因为它只需要一个 char 类型的字符并返回一个整数。整数值决定字符是否为打印字符。
该函数可用于识别字符数组内的非打印字符或用户在某一点输入的字符。
例:
Input character is:‘a’ Function will return 1 Input character is:0 Function will return 0
ctype.h - C 中的 isprint() 函数示例
#include <stdio.h>
#include <ctype.h>
int main()
{
// defining the type of variable
char a;
int b;
// assigning the value of variable
a = 'A';
b = 0;
// condition to test the printing characters
if (isprint(a) != 0)
{
printf("%c is a printing character\n\n", a);
}
else
{
printf("%c is not a printing character\n\n", a);
}
if (isprint(b) != 0)
{
printf("NULL is a printing character\n");
}
else
{
printf("NULL is not a printing character\n");
}
return 0;
}
输出
相关用法
- C语言 ispunct()用法及代码示例
- C语言 isgraph()用法及代码示例
- C语言 isupper()用法及代码示例
- C语言 isxdigit()用法及代码示例
- C语言 isalnum()用法及代码示例
- C语言 iscntrl()用法及代码示例
- C语言 isspace()用法及代码示例
- C语言 isalpha()用法及代码示例
- C语言 imagesize()用法及代码示例
- C语言 fread()用法及代码示例
- C语言 feof()用法及代码示例
- C语言 getarcoords()用法及代码示例
- C语言 strcspn()用法及代码示例
- C语言 setlinestyle()用法及代码示例
- C语言 showbits()用法及代码示例
- C语言 sprintf()用法及代码示例
- C语言 outtextxy()用法及代码示例
- C语言 grapherrormsg()用法及代码示例
- C语言 moveto()用法及代码示例
- C语言 putchar()用法及代码示例
注:本文由纯净天空筛选整理自Abhishek Sharma大神的英文原创作品 isprint() function of ctype.h in C。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。