// Simple driver for // Student and Teacher class #include #include "stu-teach.h" main() { Teacher t1("Jane Doe"); Student s1("Fred Smith"); Student s2("Amanda Franks"); cout << "The class has the following teacher: "; t1.print(); s1.print(); s2.print(); }