#include <stdio.h>

int main(void) {


// **************************************************
// Function: calcAreaOfTriangle
//
// Description: Calculates the area of a triangle
//
//
// Parameters: base   - base of the triangle
//             height - height of the triangle
//
// Returns:    area - area of triangle
//
// ***************************************************

float calcAreaOfTriangle(float base, float height)
{

    float area; // area of the triangle
  
    // calculate area
    // 0.5 * base * height;
    printf("The area of the rectangle is: %f", area);
    return (area);

} //calcAreaOfTriangle



	return 0;
}
