Jan Pax
2
Q:

c++ console cursor

#include <windows.h> int main() {    HANDLE hConsole = GetStdHandle(STD_OUTPUT_HANDLE);    COORD pos = {3, 6};    SetConsoleCursorPosition(hConsole, pos);    WriteConsole(hConsole, "Hello", 5, NULL, NULL);    return 0;}
0

New to Communities?

Join the community