请问这句代码错在了哪里?vc++编译无法通过
#include "stdio.h"#include "math.h"
#include "conio.h"
#include "graphics.h"
#include "time.h"
#define P cprintf
void backcolor()
{
int driver=VGA,mode=VGAHI;
initgraph(&driver,&mode,"");
setbkcolor(LIGHTBLUE);
getch();
}
void main()
{
textcolor(12);
P("*-----------------------------------------------------------------------------*\n");
P("*-----------------------------------------------------------------------------*\n");
P("*-------------------------------c语言综合练习程序-----------------------------*\n");
P("*-----------------------------------------------------------------------------*\n");
P("*-----------------------------------------------------------------------------*\n");
}