// Lecture6.cpp : Defines the entry point for the console application. // #include "stdafx.h" void RegistrarChangesGrade(Student* S) { S->GPA = 0.0; S->Vehicle.Set_Model_Make("Junker"); } int main(int argc, char* argv[]) { Student me("Jon Preston"); Student you("Jane Smith", "Hot Rod"); me.GoToSchool(); me.TakeClass(); me.TakeClass(); RegistrarChangesGrade(&me); me.TakeClass(); return 0; }