C++ program to draw a color-filled square using the bar function
gd.cpp
#include <graphics.h>
int main()
{
    int gd = 0, gm = 9;
    initgraph(&gd, &gm, NULL);
    setcolor(15);
    bar(50, 50, 200, 200);
    delay(5000);
    return 0;
}
Output
godarda@gd:~$ g++ gd.cpp -lgraph
godarda@gd:~$ ./a.out
Comments and Reactions