此函數接受一個字符的參數並檢查該字符是否為打印(可打印)字符。如果字符不是打印字符,則函數返回 ‘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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。