1234567
class Instructor { public: Instructor(string n) { name = n; }
12345
class Adjunct : public Instructor{ public: Adjunct (string n):Instructor(n) // Don't understand this syntax {}
1234
Instructor(string n) : name(n){ // Same as // name = n; }
Adjunct (string n):Instructor(n)
Instructor::Instructor(n)