Advertisement
Guest User

Untitled

a guest
Sep 20th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #ifndef CUBOID_H
  2. #define CUBOID_H
  3.  
  4. typedef struct
  5. {
  6. double l, w, h;
  7. }Cuboid;
  8.  
  9. Cuboid makeCuboid(double length, double height, double width);
  10.  
  11. double volume(Cuboid *cuboid);
  12.  
  13. double surfaceArea(Cuboid *cuboid);
  14.  
  15. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement