Contact: aviboots(AT)netvision.net.il
39,845 questions
51,766 answers
573 users
#include <stdio.h> #include <ctype.h> int main(void) { char ch = 'A'; if (islower(ch)) printf("yes\n"); else printf("no\n"); ch = 'a'; if (islower(ch)) printf("yes\n"); else printf("no\n"); return 0; } /* run: no yes */