linux gotoxy(int x, int y)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/Kwansy/article/details/83144566
void gotoxy(int x,int y)   //Fantasy
{
   printf("%c[%d;%df",0x1B,y,x);
}

猜你喜欢

转载自blog.csdn.net/Kwansy/article/details/83144566
int