#include <graphics.h>
using namespace std;
int main() {
initwindow(500,500);
rectangle(40,70,410,290);
getch();
return 0;
}
This is my code and when i compile it this happens: compilier window nothing happens. Can someone explain why this happens?