mode的
参数可以选用下表的任一种
方式,可以用表中指出的方式代号,也可以用对应的
符号常量。该
函数将
清除屏幕,以整个屏幕为当前
窗口,并移动到屏幕的左上角。该
函数无
返回值。
定义
函数名: textmode
用 法:
void textmode(int mode);
示例
#include
#include
int main(void)
{
textmode(BW80);
getch();
textmode(C80);
getch();
textmode(BW40);
getch();
textmode(C40);
getch();
textmode(MONO);
getch();
return 0;
}