Hi, welcome to my website Programming.OM. My name is Om prakash kartik. This blog helps you to learn programming languages concepts and technique.
#include<stdio.h> #include<conio.h> #include<graphics.h> #include<dos.h> int main() { int gdriver = DETECT,gmode; initgraph(&gdriver,&gmode,"C:\\TC\\BGI"); circle(200,200,50); getch(); }
0 Comments