C语言中已经定义了conio.h,为什么还会出现error C2065: ✀clrscr✀ : undeclared identifier??怎么解决啊

2024-12-22 15:02:54
推荐回答(3个)
回答1:

把#include改为#include
把clrscr();改为system("cls");

回答2:

clrscr();换成system("cls");

回答3:

clrscr 是turboc 专有的