学C语言,练就火眼金睛。。
请大家帮我看一下这个程序错在哪里,我在C_free里运行出现错误#include <stdio.h>
#include <conio.h>
int main()
{
textmode(BW80);
cprintf("BW80");
getch();
textmode(C80);
cprintf("C80");
getch();
textmode(BW40);
cprintf("BW40");
getch();
textmode(C40);
cprintf("C40");
getch();
textmode(MONO);
cprintf("MONO");
getch();
return 0;
}