#include <graphics.h> int main() { int gd = 0, gm = 9; initgraph(&gd, &gm, NULL); setcolor(15); fillellipse(150, 100, 100, 50); delay(5000); return 0; }
godarda@gd:~$ g++ gd.cpp -lgraphgodarda@gd:~$ ./a.out