By default, the members of a class are private. The private members
can also be declared explicitly using the keyword private. The data members and member
functions defined using access specifier private, cannot be accessed by any other
functions except the member functions of that class. That is, if a member of a class is
private, we cannot access it outside the class. But, the member fun ......