what is the equation for the circumference of a circle code example
Example 1: circumference equation
Circumference = 2 ^ pi * radius
Example 2: area and circumference of a circle
#include <stdio.h>
#define PI 3.142
int main(){
float r, C, A;
printf("What is the radius: \n");
scanf("%f", &r);
C = 2 * PI * r;
A = PI * r * r;
printf("\nCincumference is and %f Area is %f\n", C, A);
}