What are virtual functions, overriding vs overloading, different types of polymorphism? Example:: what will run if inheritnace #include class Shape{ public: virtual void getArea () { std::cout << "This is Shape" <getArea(0); std::cout<< "HEllo"; return 0; }
Sigiloso
Runtime and compile time.