#include #include using namespace std; struct Student { string fname; string lname; int sid; }; int main() { Student student1; Student student2; student1.fname = "Michael"; student1.lname = "Snaer"; student1.sid = 345; student2.fname = "Tyler"; student2.lname = "Zeller"; student2.sid = 123; if(student1.lname > student2.lname) { cout << "student1 comes first alphabetically" << endl; } else { cout << "student2 comes first alphabetically" << endl; } return 0; }