#include using namespace std ; int main() { int x1 = 10; float f1 = 10.5 ; //compiler error int x2 = const_cast(x1); char x3 = const_cast(x1); }