sds_isdigit

int sds_isdigit (int val);


Determine whether this character is a digit.


This function determines whether a given character is a decimal digit (0-9). The argument val is the ASCII value for a character.

This function returns non-zero if the given character is alphabetical. Otherwise, it returns zero.

Example

int returni;

char string1[512];

sds_getstring(1,"\nEnter a digit (0-9) (or not): ",string1);

returni=sds_isdigit(string1[0]);

if (returni == 0)

sds_printf("\nThe character is NOT a digit (0-9). ");

else

sds_printf("\nThe character IS a digit (0-9). ");

Tell me about...

Programming Overview of SDS™ (Solutions Development System™)

sds_isxdigit