When a class is derived from a base class, will the member functions of the base class become member function of the derived class. That is, for example if I write:
class A 
{ 
public : void f();
};
class B : public A 
{ 
public : void f1();
};
Now if the question is to name the member functions in class B, then will f() also become a member function of class B ?