Question: What is the correct way to call the `count` member function for the object pointer called `grades`?
- `grades.count();`
 - `my_array->count();`
 - `grades->count();`
 - `my_array.count();`
 
Answer: The correct answer of the above question is Option C:`grades->count();`