isdigit()

#include <ctype.h>

int isdigit( int character );

This functions returns a nonzero integer if character is a decimal digit ( '0' through '9' ). Otherwise, it returns 0.


Back to Essential C Functions.

Log in or register to write something here or to contact authors.