-
Notifications
You must be signed in to change notification settings - Fork 0
gotoxy
Thomas Foster edited this page Mar 22, 2021
·
7 revisions
Positions cursor in text window.
void gotoxy(int x, int y);
conio.h
gotoxy moves the cursor to the given position in the current text window. If the coordinates are in any way invalid, the call to gotoxy is ignored. An example of this is a call to gotoxy(40, 30) when (35, 25) is the bottom right position in the window.