You are here

gotoxy in C

gotoxy in C: gotoxy function places cursor at a desired location on screen i.e., we can change cursor position using gotoxy function.

Declaration: void gotoxy(int x, int y);
where (x, y) is the position where we want to place the cursor.

C programming code for gotoxy

// Works in Turbo C compiler only
#include <stdio.h>
#include <conio.h>

int main()
{
   int x, y;

   x = 10;
   y = 10;

   gotoxy(x, y);

   printf("C program to change cursor position.");

   getch();
   return 0;
}