pointer-to-pointer of derived class in multiple inheritance
- by Abdul jalil
i have 3 classes A,B and C. C is derived from A and B. i get pointer to pointer of class C and cast to A** , and B ** , the variable that hold the the B** has the address of A** in my example B ** BdoublePtr hold the address of A** .i am using the following code
#include "conio.h"
#include "stdio.h"
#include "string.h"
class A{
public:
A()
…