Warning: this question strictly refers to the MS DOS Command Shell.
I was wondering if it was possible to "control" 2 or more Console windows at the same time, under one program, without using Win32API. For example, have my main program running under one window, then in another, display a "debug log" that is displaying the contents of variables, etc., as code runs.
If it's not possible, then thanks reading this post :)
If it is:
My first approach was to use system("START");, but that starts the command prompt, which runs separately from the program, so that doesn't work. Other than this, I'm not able to fathom controlling 2 or more windows without using Win32API, or some other non-ISO library.
I'm new to these forums, so constructive criticism on anything is greatly appreciated. ;)