Question: C++ Programming Design a Sub Class: Build a Student Class. Make this class inherit from the Person class. Your class should have all of the
C++ Programming
Design a Sub Class:
Build a "Student" Class. Make this class inherit from the Person class. Your class should have all of the following properties: stuld, firstName, lastName, email, major and gpa. Include set and get methods for properties that were not inherited. Include 2 Constmctors(see example). Also add a display function for the Student class. Use main to test out this class.
Main Code:
Student *sl = new Student(419, "Bill", "Clinton", "bc@gmail.com", "CS" 2.2); sl->display();
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
