This is the student-report-card-project, I got some problems when I shifted this code to the dev C++ from borland C. Now when I try to complile the program in dev C++, it gi
You could write it on your own:
void gotoxy(int x, int y) { COORD c = { x, y }; SetConsoleCursorPosition( GetStdHandle(STD_OUTPUT_HANDLE) , c); }