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