#include #include int main(void) { char ch; for(ch = 'A'; ch <= 'Z'; ch++) printf("%c ", ch); getch(); return 0; }