#include
#include
#include
/*
Write a program to compute the area of a sector of a circle
when theta is the angle in radians between the radii.
(Recall that A = (r^2)theta/2, where theta is in radians)
*/
int main (void)
{
double r, theta, area;
printf("This program computes the area of a sector of a circle\nwhen theta is the angle in
(
Read more... )