Assume that myCar is an object of the Car class, and that the Car class has a member function named accelerate. Which of the fol- lowing is a valid call (from outside class) to the accelerate member function? a. Car.accelerate(); (b. myCar::accelerate(); c. myCar.accelerate(); d. myCar->accelerate();