标签: c linux cursor
我想知道如何在控制台中移动Cursor?
例如:
gotoxy(int x , int y) { /*Put the Code Here*/ }
答案 0 :(得分:0)
尝试:
void gotoxy(int x,int y) { printf("%c[%d;%df",0x1B,y,x); }
另见:gotoxy function with C ( linux/unix )