Programming Reference/Librarys
Question & Answer
Q&A is closed
places cursor at a desired location on screen.
#include<stdio.h> #include<conio.h> int main( void ) { int x, y; x = 42; y = 42; clrscr(); gotoxy(x, y); printf("gotoxy jumps to cursor position x42 y42."); getch(); return 0; }