Go back to Richel Bilderbeek's homepage.

Go back to Richel Bilderbeek's C++ page.

 

 

 

(C++) static_cast

 

Keyword to cast related data types, for example an int to double.

 

 

const int x = 22;

const double y = static_cast<double>(x);

 

 

 

Go back to Richel Bilderbeek's C++ page.

Go back to Richel Bilderbeek's homepage.