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. (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
Get step-by-step solutions from verified subject matter experts
