fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. return 0;
  6. }
  7. // **************************************************
  8. // Function: calcAreaOfRectangle
  9. //
  10. // Description: Calculates the area of a Rectangle
  11. //
  12. //
  13. // Parameters: base - base of the Rectangle
  14. // height - height of the Rectangle
  15. //
  16. // Returns: area - area of Rectangle
  17. //
  18. // ***************************************************
  19.  
  20. float calcAreaOfTriangle(float width, float height) // float width and height
  21. {
  22.  
  23. float area; // area of the Rectangle
  24.  
  25. // calculate area
  26. area = 0.5 * width * height; // Area of triangle is .5 x W x H plugin variables
  27. // TODO - add missing code HERE
  28. printf("The area is : %f\n", area); // Display the area according to calculation
  29.  
  30. return (area);
  31. } //calcAreaOfTriangle
Success #stdin #stdout 0s 5288KB
stdin
33
stdout
Standard output is empty