// FILE: CollSeq.cpp // PRINTS PART OF THE CHARACTER COLLATING SEQUENCE #include int main () { // Local data ... const int min = 32; //smallest numeric code const int max = 126; // largest numeric code char next_char; // character form of next_code (to // be printed) // Print sequence of characters. cout << "Program output ..." << endl; for (int next_code = min; next_code <= max; next_code++) { next_char = char (next_code); cout << next_char; if (next_char == 'Z') cout << endl; } // end for return 0; }