#include void gotoxy(int x, int y) { printf("\033[%d;%dH", y, x); // Move cursor to (x, y) } void clrscr(void) { system("clear"); }