Explicit Cast

In this lesson, we'll learn how to perform explicit casting in C++.

We'll cover the following...

The compiler performs implicit casts during operations. However, C++ allows us to apply explicit casts as well.

There are 4 different named cast operators:

  • dynamic_cast
  • static_cast
  • const_cast
  • reinterpret_cast

The functionality ...