void gotoxy( int x, int y);
==== description of gotoxy ====
places cursor at a desired location on screen.
#include
#include
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;
}
===== output of gotoxy c example =====
{{:c:conio.h:gotoxy.png?nolink|gotoxy example output in cmd}}