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>
main()
{
int x, y;
x = 10;
y = 10;
gotoxy(x, y);
printf("C program to change cursor position.");
getch();
return 0;
}
Gotoxy In C >>>>> Download Now
ReplyDelete>>>>> Download Full
Gotoxy In C >>>>> Download LINK
>>>>> Download Now
Gotoxy In C >>>>> Download Full
>>>>> Download LINK fu