Answer:
7
Step-by-step explanation:
The class clockType consists of three member variables marked as private:
It also contains four public member functions:
- void setTime(int, int, int);
- bool equalTime(const clockType&) const;
So in total it contains seven members. The member variables constitute attributes or state of the object while the member functions represent possible operations on the object.