what happens if a pointer to derived class is incremented/decremented.
DC *dptr;
*dptr++;
address of that particular class either increments or decrements
if it is so then how we will be able to access any member of the derived class.
// (*dptr).show();
or this will work without any error.