Given the side of a square then find the area of a Circumscribed circle around it.Examples: Input : a = 6 Output : Area of… Read More
Tag Archives: circle
Given the radius(r) of circle then find the area of square which is Circumscribed by circle.Examples: Input : r = 3 Output :Area of square… Read More
The header file graphics.h contains circle() function which draws a circle with center at (x, y) and given radius. Syntax : circle(x, y, radius); where,… Read More
Given a number N, find the number of ways you can draw N chords in a circle with 2*N points such that no 2 chords… Read More
Given two endpoint of diameter of a circle (x1, y1) and (x2, y2) find out the center of a circle. Examples : Input : x1 =… Read More
Given a division of a circle into n pieces as an array of size n. The ith element of the array denotes the angle of… Read More
Given a positive integer K, a circle center at (0, 0) and coordinates of some points. The task is to find minimum radius of the… Read More
Given radius of a circle, write a program to find its circumference.Examples : Input : 2 Output : Circumference = 12.566 Input : 8 Output… Read More
Given coordinate of the center and radius > 1 of a circle and the equation of a line. The task is to check if the… Read More
Given outer circle radius R and inner circle radius r, making circles from the same center and forming the boundary between them. Now, given X… Read More
There are two circles A and B with their centres C1(x1, y1) and C2(x2, y2) and radius R1 and R2. The task is to check… Read More
A circle is given with k equidistant points on its circumference. 2 points A and B are given in the circle. Find the count of… Read More