Is there an actual difference between a const_cast and c style cast (ObjectType) ?
C-style cast in C++ attempts a static cast, a reinterpret cast, a const cast, or a combination of those.
It is recommended to avoid C casts mainly because...