SilverScreen Solid Modeler

isdigit

isdigit

Previous topic Next topic  

isdigit

Previous topic Next topic JavaScript is required for the print function  

StandardCLibrary

 

int isdigit( int c )

 

int c;       /* a character */

 

 

 




Synopsis

#include "ctype.h"

 

The isdigit function determines whether c is a decimal digit.

 

 

Parameters

c is an int, whose value must be representable as a char.

 

 

Return Value

isdigit returns a non-zero value if c is a decimal digit, and 0 if not.

 

 

See Also

isalnum, isalpha