#include <stdio.h>

float calcAreaofSector(float radius); // define function
	
int main(void) {
	float radius = 14; // define radius as 14
	float Sector = calcAreaofSector(radius); // define Square area
	float area;       // output looking to achieve
	printf("%f", Sector); // print output
	// your code goes here
	return 0;
}


// **************************************************
// Function: calcAreaOfSquare
//
// Description: Calculates the area of a Square
//
//
// Parameters: length   - length of the Square
//             Square - Definition of shape
//
// Returns:    area - area of Parallelogram
//
// ***************************************************

float calcAreaofSector(float radius)
{

    float area; // float area of the Square
 

    area = .5 * radius * radius * 0; // Area of Sector is 1/2(radius * radius)*height
    
    
    return area;

} //calcAreaOfSector
