struct car { int year int vin; } struct car myCar; p_myCar = &myCar; myCar.year = 1995; // '->' allows you to use the '.' with pointers p_myCar->vin = 1234567;