#!/usr/bin/env cscript #include #include #define ALPHABET "ABCDEFGHIJKLMNOPQRSTUVWXYZ" int main(int argc, const char *argv[]) { char column_string[3 + 1], next_column_string[3 + 1], *needle_column_string; strcpy(column_string, "A"); for (int i = 0; i < 78; i++) { puts(column_string); while (++*column_string == '[') { *column_string = 'A'; } } return 0; }