...

/

Conversions using a Static_cast Syntax

Conversions using a Static_cast Syntax

Learn about the conversions using a static-cast syntax in the C++ language.

We'll cover the following...

Problem

Write a program that carries out the following conversions using a static_cast syntax:

  1. cast-less conversions
  2. narrowing conversions
  3. conversions from void *
  4. implicit type conversions
...