Gotoxy
Gotoxy
Gotoxy
direction relative to the origin of the current window. The origin is located at (1,1), the upper-left
corner of the window.
Answer
Description This shows how to use the gotoxy function in C
to move the text cursor to a different location on the screen
Code
#include<stdio.h>
#include<conio.h>
int main(void)
int i;
gotoxy(10,4);
gotoxy(20,8);
return 0;