C++ Programming/Code/Standard C Library/Functions/isgraph

< C++ Programming < Code < Standard C Library < Functions

isgraph

Syntax
#include <cctype>
int isgraph( int ch );

The function isgraph() returns non-zero if its argument is any printable character other than a space (if you can see the character, then isgraph() will return a non-zero value). Otherwise, zero is returned.

Related topics
isalnum - isalpha - iscntrl - isdigit - isprint - ispunct - isspace - isxdigit
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.