/*/ this is an example of how to pass a struct as a parameter to a function /*/ #include #include using namespace std; struct P { string fname; string lname; string email; double grade; }; void My_Func(P ); int main() { P person; person.fname = "Ricardo"; person.lname = "Suzuki"; person.email = "rs@asdf.com"; person.grade = 12.3; My_Func(person); return 0; } void My_Func(P my_struct ) { cout<