Descrição
Ele verifica se o caractere é um dígito hexadecimal.
Declaração
A seguir está a declaração para std :: isxdigit.
C ++ 98
int isxdigit ( int c );
C ++ 11
int isxdigit ( int c );
Parâmetros
c - Caractere a ser verificado, convertido em um int ou EOF.
Valor de retorno
Ele retorna um valor diferente de zero.
Exceções
No-throw guarantee - esta função nunca lança exceções.
Exemplo
No exemplo abaixo para 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;
}
O exemplo de saída deve ser assim -
The hexadecimal number ffff is 65535.