Question: Find the error in the code. Don't change the code in main, manipulate the class the work with the main. What needs to be changed
Find the error in the code. Don't change the code in main, manipulate the class the work with the main. What needs to be changed so the code can compile?
#include
}; int Date::getMonth() { return month; }
void Date::setMonth(int mn) { month = mn; }
int main() { const Date BirthDate(1, 18, 1953); BirthDate.getMonth(); return 0;
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
