I installed graphics.h library on Dev-C++ but it wont run my code as it gives me this error in the compiler:
int left=0,
int right=0,
int right=INT_MAX,
int bottom=INT_MAX,
Here's my code:
#include <graphics.h>
void main( )
{
initwindow(800, 800, "line");
line(200,200,200,600);
getch();
}
They told me graphics.h
can't work on 64-bit windows... Is that right?...