C++ Programming/Code/Standard C Library/Functions/isgraph
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.
Category:Book:C++ Programming#Code/Standard%20C%20Library/Functions/isgraph%20