It checks if character is hexadecimal digit.
DeclarationFollowing is the declaration for std::isxdigit.
C++98int isxdigit ( int c );C++11
int isxdigit ( int c );Parameters
c − Character to be checked, casted to an int, or EOF.
Return ValueIt returns a value different from zero.
ExceptionsNo-throw guarantee − this function never throws exceptions.
ExampleIn below example for std::isxdigit.
#include <stdio.h> #include <stdlib.h> #include <ctype.h> int main () { char str[]="ffff"; long int number; if (isxdigit(str[0])) { number = strtol (str,NULL,16); printf ("The hexadecimal number %lx is %ld.\n",number,number); } return 0; }
The sample output should be like this −
The hexadecimal number ffff is 65535.
locale.htm
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4