Programming
Python
R
Java
C
C++
C#
WEB
HTML
CSS
JavaScript
BootStrap4
jQuery
SVG
MORE
Examples1
Python
GO
R
Java
C
C++
C#
Examples2
Python
R
Java
C
C++
C#
HTML
CSS
JavaScript
BootStrap4
jQuery
SVG
Seo Tools
Code Minifier
Code Beautifier
Language Compiler
Misc Tools
File Converter
References
C
C++
Python
Java
PHP
JavaScript
Examples
Python
R
Java
C
C++
C#
HTML
CSS
JavaScript
BootStrap4
jQuery
SVG
Home
About
Contact
JetPack
Multi Themes-->>
Code it ALL
Scroll TOP
isgraph() - ctype.h in c - CodeGK
Δ C References
string.h
strcat()
strcmp()
strcpy()
strlen()
math.h
acos()
acosh()
asin()
asinh()
atan()
atan2()
atanh()
cbrt()
ceil()
cos()
cosh()
exp()
fabs()
floor()
hypot()
log()
log10()
pow()
sin()
sinh()
sqrt()
tan()
tanh()
ctype.h
isalnum()
isalpha()
iscntrl()
isdigit()
isgraph()
islower()
isprint()
ispunct()
isspace()
isupper()
isxdigit()
tolower()
toupper()
♦ isgraph() - ctype.h
♣ Example1: isgraph()
Input:
Run CODE
Reload Code
Copy Code
#include
#include
char main() { char c1 = '\b'; int r1 = isgraph(c1); printf("%d\n", r1); char c2 = '6'; int r2 = isgraph(c2); printf("%d\n", r2); char c3 = '\t'; int r3 = isgraph(c3); printf("%d\n", r3); char c4 = '2'; int r4 = isgraph(c4); printf("%d\n", r4); return 'm'; }
Output: