Question: Find five errors in the following C++ program and provide their correction. (line numbers are not part of the program) 1. #include 2. using

 Find five errors in the following C++ program and provide their correction. 

Find five errors in the following C++ program and provide their correction. (line numbers are not part of the program) 1. #include 2. using namespace std; 3. class DumbBell: 4. { 5. int weight; 6. public: 7. void setWeight(); 8. }; 9. void setWeight(int w) 10. { 12. weight = w; 13.} 14. int main() 15. { 16. Dumbbell bar; 17. 18. DumbBell(200); 19. cout < < "The weight is "

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!