Графіка та керування у вікні термінала

Using ANSI escape sequence, where ESC[y;xH moves
curser to row y, col x:

#include <stdio.h>
int main()
{
    printf("\033[6;3HHello\n");
    return 0;
}

urls: