Assume that myCar is an instance of the Car class and that the Car class has a member function named accelerate. Which of the following is a valid call to the accelerate member function?
a. Car -> accelerate();
b. myCar::accelerate();
c. myCar.accelerate();
d. myCar:accelerate();
e. None of these
c. myCar.accelerate();
Computer Science & Information Technology