/* Characters from A to Z, all on one line. */ #include main () { char ch; for (ch = 'A'; ch <= 'Z'; ch++) { printf("%c", ch); } printf("\n"); }