如何在Linux下移动Cursor而不使用ncurses

时间:2016-02-28 06:33:22

标签: c linux cursor

我想知道如何在控制台中移动Cursor?

例如:

gotoxy(int x , int y)
{ /*Put the Code Here*/ }

1 个答案:

答案 0 :(得分:0)

尝试:

void gotoxy(int x,int y)
{
    printf("%c[%d;%df",0x1B,y,x);
}

另见:gotoxy function with C ( linux/unix )