[Solved] Implement a base class person

30 $

File Name: Implement_a_base_class_person.zip
File Size: 273.18 KB

SKU: [Solved] Implement a base class person Category: Tag:

Or Upload Your Assignment Here:


Consider the following classes B and D:

Class B

{

Public;

B();

B( int n);

};

B::B()

{

cout << âB::B()nâ;

}

B::B(int n)

{

cout << âB::B(â << n << â)nâ;

}

Class D : Public B

{

public:

D();

D( int n);

private:

B b;

};

D::D()

{

cout << âD::D()nâ;

}

D::D(int n) : B(n)

{

b = B(-n);

cout << âD::D(â<< n <<â)nâ;

}

What does the following program print?

int main()

{

D d(3);

return 0;

}

  • Implement a base class person. Derive classes Student and Professor from Person. Every Person has will have a name, and birthdate. Every student will have a major, and every professor will have an income. Write the class definitions, the constructors, and the member functions print() for all classes.

Please provide outcome in C++ program, a text file, and screenshot (JPEG).

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[Solved] Implement a base class person
30 $