fork download
  1. #include <iostream>
  2. #include <typeinfo>
  3.  
  4. int main()
  5. {
  6. float f = 5.0f;
  7. std::cout << typeid(f * 100).name() << '\n';
  8. }
  9.  
Success #stdin #stdout 0.01s 2724KB
stdin
Standard input is empty
stdout
f