Contact: aviboots(AT)netvision.net.il
39,845 questions
51,766 answers
573 users
#include <iostream> using namespace std; int main() { char ch = 'A'; if (islower(ch)) cout << "yes" << endl; else cout << "no" << endl; ch = 'a'; if (islower(ch)) cout << "yes" << endl; else cout << "no" << endl; return 0; } /* run: no yes */