Say I want to cast A*
to char*
and vice-versa, we have two choices (I mean, many of us think we\'ve two choices, because both seems to wor
Using of C Style casting is not safer. It never checks for different types can be mixed together. C++ casts helps you to make sure the type casts are done as per related objects (based on the cast you use). This is the more recommended way to use casts than using the traditional C Style casts that's always harmful.