Boundry of circle is called circumference.
Chat with our AI personalities
The circumference of any circle is the irrational number "pi" (very approximately 3.1418) times the diameter of the circle.
The circumference and diameter of a circle are related by Pi (about 3.1416):
int radius = 2; int output; radius = radius * 2; output = radius * Math.PI; Console.WriteLine(output);
A 12-inch diameter circle has a circumference of: 37.7
The circumference is 175.92918860102841 feet.
2 x 3.1415926535897 = about 6.283
// macro definitions: #define PI 3.14159265358979323846 #define CIRCUMFERENCE(radius) (2. * (radius) * PI) // use this as in CIRCUMFERENCE(21.34)