Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

gotoxy not working in dev c++

//Defines gotoxy() for ANSI C compilers. 
void gotoxy(short x, short y) { 
COORD pos = {x, y}; 
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), pos); 
}
Source by www.quora.com #
 
PREVIOUS NEXT
Tagged: #gotoxy #working #dev
ADD COMMENT
Topic
Name
6+8 =