I have this code:
#include<graphics.h>
int main( )
{
initwindow( 700 , 700 , "MY First Program");
circle(200, 200, 150);
getch();
return 0;
}
but I get this error:
ld||cannot find -lbgi|
||=== Build failed: 1 error(s), 0 warning(s) (0 minute(s), 0 second(s)) ===|
I added it to linker options and also the other things.
What should I do?