Descripción
Comprueba si el carácter es un dígito decimal.
Declaración
A continuación se muestra la declaración de std :: isdigit.
C ++ 98
int isdigit ( int c );
C ++ 11
int isdigit ( int c );
Parámetros
c - Carácter que se va a comprobar, convertir en un int o EOF.
Valor devuelto
Devuelve un valor diferente de cero.
Excepciones
No-throw guarantee - esta función nunca arroja excepciones.
Ejemplo
En el siguiente ejemplo para std :: isdigit.
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
int main () {
char str[]="2016ad";
int year;
if (isdigit(str[0])) {
year = atoi (str);
printf ("The year that followed %d was %d.\n",year,year+1);
}
return 0;
}
La salida de muestra debería ser así:
The year that followed 2016 was 2017.