+ 3
Not sure if this what you want. But you can set the cursor position through windows.h header using SetConsoleCursorPosition
Example Usage Below:
HANDLE wHnd = GetStdHandle(STD_OUTPUT_HANDLE);
COORD position = { 5, 5 };
SetConsoleCursorPosition(wHnd, position);



