#include #include using namespace std; struct Student { string fname; string lname; int sid; }; void printStudent(Student stu); int main() { Student beststudent; beststudent.fname = "Martin"; beststudent.lname = "Brown"; beststudent.sid = 123; printStudent(beststudent); return 0; } void printStudent(Student stu) { cout << "Student Information" << endl; cout << "First Name: " << fname << endl; cout << "Last Name: " << lname << endl; cout << "Sid: " << sid << endl; }