SOS这样的问题百年不遇~~~~~~
我真够晕的,程序没有错误可就是运行不了~~有哪位高手帮我帮我运行运行#include<graphics.h>
#include<conio.h>
#include<stdio.h>
main()
{
int driver=DETECT,mode;
initgraph(&driver,&mode,"\\tc");
cleardevice();
outtext("Normal");
settextstyle(4,3,2);
outtext("Gothic");
settextstyle(1,3,7);
outtextxy("Sans Serif");
getch();
outtextxy(220,140,"Sans Serif font");
getch();
closegraph();
}