The isprint function returns a value of type boolean, which indicates whether the parameter passed to it is a printable character. If the parameter is a printable character then the value true is returned, and if the parameter is not a printable character then the value false is returned.
The isprint function's only parameter is an expression of char type.
isprint('A') returns true
isprint('3') returns true
isprint('+') returns true
isprint(' ') returns true
isprint(chr(10)) returns false
isprint(chr(8)) returns false
Operating Systems: All
Standard Pascal: No