在c语言中,clrscr()怎么用,为什么说错误,undeclared identifier???

2024-12-20 06:44:03
推荐回答(2个)
回答1:

用system("CLS");

头文件 stdlib.h
简单例子
#include
#include

int main()
{
printf("Hello World!\n");
system("PAUSE");
system("CLS"); //效果相当于clrscr()
system("PAUSE");
return 0;
}

回答2:

clrscr 是turboc 专有的