With the struct definition given below...
struct A { virtual void hello() = 0; };
Approach #1:
struct B : public A {
I will certainly include the Virtual keyword for the child class, because