注册 登录
编程论坛 C图形专区

学C语言,练就火眼金睛。。

江湖2331 发布于 2011-04-11 23:02, 799 次点击
请大家帮我看一下这个程序错在哪里,我在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;  
 }
0 回复
1