Suppose I have the following code:
class A 
{
     public:
         void Funct1();
};
class B : public A
{
      public:
          void Func1();
          void Func2();
}
In main()
Declaring Object of type A
  A b = new B;
  b.Func1() // can access it;
  b.Func2() // cannot access
How can I make or access Func2 using object b especially in main
 
     
     
     
     
     
    