Define a function called bigger_rectangle() that will accept one argument of the structure type rectangle (declared below) and will multiply the width dimension by 1.5, the height dimension by 2.5 and the length dimension by 3. The function should return the new structure.
Define a temporary local variable if you want to.
struct rectangle {
float height;
float width;
float length;
};

Q&A Education