You are viewing a single comment's thread. Return to all comments →
Easy peasy:
typedef struct { int height; int length; int width; }box; int get_volume(box b) { return b.length * b.height * b.width; } int is_lower_than_max_height(box b) { return b.height < 41 ? 1 : 0; }
Seems like cookies are disabled on this browser, please enable them to open this website
Boxes through a Tunnel
You are viewing a single comment's thread. Return to all comments →
Easy peasy: