{{keywords>wiki library source code example reference}} ====== isdigit ====== int isdigit(int chr); tests if a character a digit ===== C Sourcecode Example ===== #include /* including standard library */ //#include /* uncomment this for Windows */ #include int main ( void ) { int i; char string[11]="Test\n-!&%1"; for (i=0; i <= 11;i++) { if ( isdigit(string[i]) != 0 ) { printf("Character %i is a digit\n",i); } } return 0; } ==== output ==== user@host:~$ ./isdigit Character 9 is a digit