C++ Programming/Code/Standard C Library/Functions/isxdigit
< C++ Programming < Code < Standard C Library < Functionsisxdigit
Syntax |
#include <cctype>
int isxdigit( int ch );
|
The function isxdigit() returns non-zero if its argument is a hexadecimal digit (i.e. A-F, a-f, or 0-9). Otherwise, zero is returned.
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.