#include <stdio.h> /* including standard library */ //#include <windows.h> /* uncomment this for Windows */ #include <ctype.h> 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; }
user@host:~$ ./isdigit Character 9 is a digit