Types of Member Functions We already know what member functions are and what they do. Now lets study some special member functins present in the class. Following are different types of Member functions, Simple functions Static functions Const functions Inline functions Friend functions a) Simple Member functions These are the basic member function, which dont have any special keyword like static etc as prefix. All the general member functions, which are of below given form, are termed as simple and basic member functions. return_type functionName(parameter_list) { function body; } b) Static member functions/ Static Data member When we declare a normal variable (data member) in a class, different copies of those data members create with the associated objects. In some cases when we need a common data member that should be same for all objects, we cannot do this using normal data members. To fulfill such cases, we need static data members. In...