Programming Reference/Librarys
Question & Answer
Q&A is closed
#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 -!&%1"; for (i=0; i <= 11;i++) { if ( islower(string[i]) != 0 ) { printf("Character %i is a lower char\n",i); } } return 0; }
user@host:~$ ./islower Character 1 is a lower char Character 2 is a lower char Character 3 is a lower char