Programming Blog

This blog is about technical and programming questions and there solutions. I also cover programs that were asked in various interviews, it will help you to crack the coding round of various interviews

Friday, 22 December 2017

C program to draw a circle

#include<graphics.h>#include<conio.h>
void main(){    int gd=DETECT, gm;
    initgraph(&gd, &gm, "c:\\turboc3\\bgi " );    circle(200,100,150);
    getch();    closegraph();}

No comments:

Post a Comment