Declaration:
int isdigit(unsigned char c);
Description
The isdigit function checks, if parameter c is a decimal number ('0'-'9').
Returned value
The isdigit function will return a non-zero value, if parameter c is a decimal number, otherwise it will return 0.
|