Question: Given the class Rectangle below ( assume the public functions are defined elsewhere ) , what code will give a compiler error if used in

Given the class Rectangle below (assume the public functions are defined elsewhere), what code will give a compiler error if used in XXX?
class Rectangle {
public:
Rectangle();
Rectangle(int length, int height);
void SetLength(int);
void SetHeight(int);
private:
int length;
int height;
};
int main(){
Rectangle rect;
XXX
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!