<< split from this thread >>
I am a student in Bogazici University/Turkey. We have a project and I want to change the cursor position but there is a problem. Our teachers are using Microsoft Visual C++ 2005 Express Edition. In this compiler there is no windows.h header. What can I do?
>Can you please help me on calling interrupts in that standard?
Didn't you already ask that question, or was it someone else?>By I think, one of the h files can be used for this purpose.
windows.h, and you have to implement the functionality yourself:#include <windows.h> void gotoxy ( short x, short y ) { COORD coord = {x, y}; SetConsoleCursorPosition ( GetStdHandle ( STD_OUTPUT_HANDLE ), coord ); }