//Structures: an Employee is a Person #include #include using namespace std; struct Person { string name; int yearBorn; }; //Person struct Employee { Person info; double hourlyRate; }; //Employee int main() { Employee manager; double hours,pay; manager.info.name="Smith"; manager.info.yearBorn=1989; manager.hourlyRate=15.00; cout<<"How many hours did "<>hours; pay=hours*manager.hourlyRate; cout<