Не могу ни как подключить graphics.h в DEV C++, при таком коде:
#include
#include
using namespace std;
int main()
{
initwindow(800,600);
circle(200,300,600);
while(!kbhit());
closegraph();
return 0;
}
Выдает ошибку: [error] id returned 1 exit status
#include
#include
using namespace std;
int main()
{
initwindow(800,600);
circle(200,300,600);
while(!kbhit());
closegraph();
return 0;
}
Выдает ошибку: [error] id returned 1 exit status