I executed the following code in codeblocks IDE-
#include <iostream>
#include <graphics.h>
using namespace std;
int main()
{
int gd = DETECT, gm;
initgraph(&gd, &gm, "C:TCBGI");
line(100, 200, 150, 250);
cout << "Hello world!" << endl;
return 0;
}
and while debugging my code stopped at this point in graphics.h
int left=0, int right=0, int right=INT_MAX, int bottom=INT_MAX,
I have included the WinBGIm library.
See Question&Answers more detail:os