Question: C++ The above code is wrong, please tell me how to fix it part2 1123456789101112131415161718classRectangle{intwidth,height;public:Rectangle(int,int);intarea(){return(width*height);}};Rectangle::Rectangle(inta,intb){width=a;height=b;intmain(){Rectanglerect;rect.Rectangle(5,6);cout
C++
The above code is wrong, please tell me how to fix it
part2


1123456789101112131415161718classRectangle{intwidth,height;public:Rectangle(int,int);intarea(){return(width*height);}};Rectangle::Rectangle(inta,intb){width=a;height=b;intmain(){Rectanglerect;rect.Rectangle(5,6);cout
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
