fork download
  1. #include <stdio.h>
  2.  
  3. float calcAreaofTriangle(float base, float height);
  4.  
  5. int main(void) {
  6. float base = 10;
  7. float height = 12;
  8. float triangle = calcAreaofTriangle(base, height);
  9. float area;
  10. printf("%f", triangle);
  11. // your code goes here
  12. return 0;
  13. }
  14.  
  15.  
  16. // **************************************************
  17. // Function: calcAreaOfTriangle
  18. //
  19. // Description: Calculates the area of a triangle
  20. //
  21. //
  22. // Parameters: base - base of the triangle
  23. // height - height of the triangle
  24. //
  25. // Returns: area - area of triangle
  26. //
  27. // ***************************************************
  28.  
  29. float calcAreaofTriangle(float base, float height)
  30. {
  31.  
  32. float area; // area of the triangle
  33.  
  34.  
  35. area = 0.5 * base * height; // Area of triangle is .5 x W x H plugin variables
  36.  
  37.  
  38. return area;
  39.  
  40. } //calcAreaOfTriangle
  41.  
  42.  
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
60.000000