// Project EmployeeArray // Class Person // Project Employee // File person.cpp #include using namespace std; #include "person.h" Person::Person(string n, char g, int a) { name = n; gender = g; age = a; } void Person::display() { cout << "name = " << name << endl; cout << "gender = " << gender << endl; cout << "age = " << age << endl; }