The above image contains --- Error My Code On Graphics Inshort All You Need To "Diagnosis"
Please help I am trying to create a tictactoe game there but unfortunately its giving the error in beginning only..
Please NOTE- *>The same code is running well in Turbo c++ . *>I have fixed the inclusion of the entire package of "winbgim" step by step. *>My OS-Windows 10
#include <graphics.h>
#include <conio.h>
int main()
{
int gd=DETECT;
int gm;
initgraph(&gd , &gm ,"C:\\TC\\BGI");
getch();
closegraph();
return 0;
}