//Structures #include #include using namespace std; struct Person { string name; int yearBorn; }; //Person int main() { Person student; student.name="Joe"; student.yearBorn=1989; cout<