cho em hỏi thêm
trong turboc++3.0
em có đoạn code như sau:
#include <stdio.h>
#include <dos.h>
#include <conio.h>
#include <stdlib.h>
#include <graphics.h>
main()
{
int mh=0,mode=0;
initgraph(&mh,&mode,"");
line(1,1,4,4);
getch();
closegraph();
}
sao nó không chạy được và báo lỗi:
.compiling TC\BIN\DUONG_TH.CPP:
linking DUONG_TH.EXE
linker error : undefined symbol _closegraph in module TC\BIN\DUONG_TH.CPP
linker error : undefined symbol _line in module TC\BIN\DUONG_TH.CPP
linker error : undefined symbol _initgraph in module TC\BIN\DUONG_TH.CPP
giúp em với nhé!!!
|