Biblioteca C ++ Locale - isdigit

Descrição

Ele verifica se o caractere é um dígito decimal.

Declaração

A seguir está a declaração para std :: isdigit.

C ++ 98

int isdigit ( int c );

C ++ 11

int isdigit ( int c );

Parâmetros

c - Caractere a ser verificado, lançado 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 :: 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;
}

O exemplo de saída deve ser assim -

The year that followed 2016 was 2017.