Error with clrscr() on Dev C++ 5.4.2

前端 未结 6 1400
孤城傲影
孤城傲影 2021-01-20 14:13

While programming C on the old Turbo C++ compiler I can use the clrscr() method of the \"conio.h\" header file but not on Dev C++ 5.4.2.(It gives an unusual error Id returne

6条回答
  •  感情败类
    2021-01-20 14:56

    please include stdlib.h file and then call system("cls") and enjoy.

    #include
    
    system("cls");
    

提交回复
热议问题