Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Find the error(s) in each of the following and explain how to correct it. 1.Assume the following prototype is declared in class Date : void
- Find the error(s) in each of the following and explain how to correct it.
1.Assume the following prototype is declared in class Date:
void ~Date( char );
2.
- The following is a partial definition of class Washer:
class Washer
{
public:
Washer(double w, double c) {w=weight, c=capacity; }
void getWeight() const { return weight; }
private:
double weight, capacity;
};
int main()
{
Washer wash;
wash.weight = 100;
cout << The weight is: << getWeight() << endl;
return 0;
}
3.Assume the following prototype is declared in class Employee:
int Employee( const char *, const char *); // constructor
C++
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started