Is it possible to programmatically, or otherwise, increase the width of the Windows console window? Or do I need to create a wrapper program that looks and acts like the con
system("mode 45, 20");
This is a bad solution because it disables vertical scrolling.
This is better:
system("mode CON: COLS=120");