fork download
  1. #include <stdio.h>
  2.  
  3. float calcAreaTriangle(float base, float height);
  4.  
  5. int main (){
  6. calcAreaTriangle(2, 4);
  7. }
  8. //**************************************************************
  9. // Function: calcAreaTriangle
  10. //
  11. // Purpose: Receives information on the base and height of the
  12. // triangle and calculates the area
  13. //
  14. // Parameters:
  15. //
  16. // base - base of the triangle
  17. // height - number of employees to process
  18. //
  19. // Returns: areaTriangle - area of the triangle
  20. //
  21. //**************************************************************
  22. float calcAreaTriangle (float base, float height)
  23. {
  24. float areaTriangle;
  25. areaTriangle= ((1/2)*base)*height;
  26. printf("Area of the Triangle is: %f", areaTriangle);
  27. return areaTriangle;
  28. } //need to check that adheres to coding standards
  29.  
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
Area of the Triangle is: 0.000000