If virtual table is created in compile time, then why do we call this as a run time polymorphism?
c++
Solution
Because the lookup happens at runtime.
Problem
As virtual table is created in compile time, then why do we call this as run time polymorphism in c++?