#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; beststudent.gpa = 6.0; printStudent(beststudent); return 0; } void printStudent(Student stu) { cout << "Student Information" << endl; cout << "First Name: " << stu.fname << endl; cout << "Last Name: " << stu.lname << endl; cout << "Sid: " << stu.sid << endl; cout << "GPA: " << stu.gpa << endl; }