What is the correct way to call the count member function for the object pointer called grades?
class my_array{
public:
int count();
}; // ... more members above
int main(){
my_array *grades = new my_array();
}; // ... more code above