Write a program which incorporates a function named compute and which is used to calculate the area and circumference of a circle. Use the main function for inputs and outputs.
#include
//function prototype
void ComputeCircle(int r,double &,double &);
int main()
{
int radius;
double area, circ;
cout<<"Enter the radius of your circle"<>radius;
ComputeCircle (radius,area,circ);
cout<<"The area of the circle is:"<
cout<<"The Circumference of the circle is:"<
}
void ComputeCircle(int r, double & A, double & C)