#include #include int main() { for(char c = 'a'; c != 'z'; ++c) { assert(isupper(toupper(c))); } return 0; }