Hello,
What is the usage of usage of gotoxy() function? Also can you show me an example of it being used?
Thank You In Advanced.
This is a discussion on usage of gotoxy() function within the C++ Programming forums, part of the General Programming Boards category; Hello, What is the usage of usage of gotoxy() function? Also can you show me an example of it being ...
Hello,
What is the usage of usage of gotoxy() function? Also can you show me an example of it being used?
Thank You In Advanced.
gotoxy moves the cursor to the given position in the current text window.
ex:
Code:#include <conio.h> int main() { clrscr(); gotoxy( 35, 12 ); cprintf( "Blah Blah Blah" ); getch(); return 0; }
pointer = NULL