I'm trying to output multiple characters to the same location in a console window, without overwriting/clearing any of them
Simply moving the cursor position to the x and y coordinates seem to clear the existing character and write the new one to the screen.
cout << "O";
SetConsoleCursorPosition(hConsole, pos);
cout << "I";
I was hoping that would create an O/I hybrid, with the 2 occupying the same screen space, instead of just an I.