Nutanix interview question

What is multiple inheritance? Difference between const int * p and int * const p?

Interview Answer

Anonymous

29 Jul 2023

Multiple inheritance is inheriting more than one class. First is pointing to const int, second is a const pointer of type int.