Which header file I need to include to use gotoxy() function?

前端 未结 7 2080
夕颜
夕颜 2021-01-07 04:06

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

7条回答
  •  鱼传尺愫
    2021-01-07 04:15

    there is a small piece of code which works for me most of the time.....

    #include
    #include  //for setw(); 
    
    using namespace std;
    
    gotoxy(int x, int y)
    {
      cout<0;y--)   //vertical
        cout<

提交回复
热议问题