请大家帮忙看看
我用tc编译这个时总是出现This system does not support fullscreen mode.Choose "close"to terminate the application .请问该怎样解决这个问题???
#include "graphics.h"
#include "conio.h"
int main()
{
int graphdeiver=DETECT,graphmode;
int x,y,radius,stangle,endangle;
initgraph(&graphdeiver,&graphmode,"c: \\tc\\bgi");
x=300;y=200;
radius=50;
stangle=0;
endangle=180;
arc(x,y,stangle,endangle,radius);
getch();
closegraph();
return 0;
}