The following COBOL program depicts the use of STRING DELIMITED BY SIZE IDENTIFICATION DIVISION. PROGRAM-ID. PGM040. AUTHOR. MAINFRAMEWIZARD. DATA DIVISION. WORKING-STORAGE SECTION. 01 WS-TITLE …
Description You're given a list of n strings a1, a2, ..., an. You'd like to concatenate them together in some order such that the resulting string would be lexicographically smallest. Given the list of strings, output the lexicographically smallest c…