Program to draw a circle using bresenham’s method
/* Program to draw a circle using bresenham’s method */ #include<iostream.h> #include<graphics.h> #include<conio.h> void plot8pixels(int,int,int,int); void main() { int x,y,r,h,k,p; cout<<“\n\t\t\t\**circle using Bresenham’s method**\n”; cout<<“\nenter the x and y coordinates:-\n”; …