Member Functions in C++

Member functions are operators and functions that are declared as members of a class. The two types of member referenced in a class are data members and member functions. The variables declared inside the class are known as data members. The functions declared inside the class are known as member functions. Member functions do not include operators and functions declared with the friend specifier. These are called friends of a class. You can declare a member function as static; this is called a static member function. Part - I

Part - II