Question: in C + + what is the code for 3 2 . 1 1 LAB: Pet information ( derived classes ) The base class Pet

in C++ what is the code for 32.11 LAB: Pet information (derived classes)
The base class Pet has protected data members petName, and petAge. The derived class Cat extends the Pet class and includes a private data member for catBreed. Complete main() to:
create a generic pet and print information using PrintInfo().
create a Cat pet, use PrintInfo() to print information, and add a statement to print the cat's breed using the GetBreed() function.
Ex. If the input is:
Dobby
2
Kreacher
3
Scottish Fold
the output is:
Pet Information:
Name: Dobby
Age: 2
Pet Information:
Name: Kreacher
Age: 3
Breed: Scottish Fold

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!