#include
#include #include
using namespace std;
class Instructor {
public:
list
int EmployeeID;
string name;
string address;
};
class Student {
public:
list
int studentID;
string name;
string address;
};
class TeachingAssistant : public Student, public Instructor {};
int main() {
TeachingAssistant ta;
ta.Instructor::name = Joey;
cout << ta.Instructor::name << endl;}

![[SOLVED] CS #include](https://assignmentchef.com/wp-content/uploads/2022/08/downloadzip.jpg)

![[SOLVED] COP 3223 Program #1: Vacation Planning](https://assignmentchef.com/wp-content/uploads/2022/08/downloadzip-1200x1200.jpg)
Reviews
There are no reviews yet.