It checks if character is decimal digit.
DeclarationFollowing is the declaration for std::isdigit.
C++98int isdigit ( int c );C++11
int isdigit ( 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::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; }
The sample output should be like this −
The year that followed 2016 was 2017.
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