原型:extern void clrscr(void);
extern void ClearScreen(void);用法:#include <system.h>
功能:清屏
说明:清除屏幕缓冲区及液晶显示缓冲区
光标位置回到屏幕左上角。
// clrscr.c #include <system.h> main() { clrscr(); textmode(0x00); printf("Press a key"); getchar(); ClearScreen(); printf("Another Screen"); getchar(); return 0; }相关函数:无