Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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 using namespace std; class Date { public: Date(int mn, int dy, int yr) : month(mn) {}; int getMonth(); void setMonth(int mn); private: int month;

}; 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

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

Coment Rningt in Propere Coment Rningt in Propere

Answered: 1 week ago