画图求助
画一个矩形的程序,可编译,得不到结果。craphcis not initialized (not 'used initgraph')#include<graphics.h>
#include<stdlib.h>
void init(void);
void drawk(void);
void main()
{
init();
drawk();
}
void init(void)
{
int ma=DETECT,gmode;
initgraph(&ma,&gmode,"c:\\tc");
cleardevice();
}
void drawk(void)
{
setcolor(11);
rectangle(40,50,88,99);
}