Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
#include <stdio.h> #include <conio.h> #include <graphics.h> void main() { int gd = 0, gm; clrscr(); initgraph(&gd, &gm, "C:\TurboC++\Disk\TurboC3\BGI"); circle(100, 80, 20); getch(); closegraph(); }