C++ Programming/Code/Standard C Library/Functions/isdigit

< C++ Programming < Code < Standard C Library < Functions

isdigit

Syntax
#include <cctype>
int isdigit( int ch );

The function isdigit() returns non-zero if its argument is a digit between 0 and 9. Otherwise, zero is returned.

char c;
scanf( "%c", &c );
if( isdigit(c) )
  printf( "You entered the digit %c\n", c );
Related topics
isalnum - isalpha - iscntrl - isgraph - isprint - ispunct - isspace - isxdigit
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.