fork(1) download
  1. #include <iostream>
  2. #include <typeinfo>
  3. using namespace std;
  4.  
  5. int main() {
  6.  
  7.  
  8.  
  9. std::cout << typeid(7).name() << "\n";
  10. std::cout << typeid(7.0).name() << "\n";
  11.  
  12. // your code goes here
  13. return 0;
  14. }
Success #stdin #stdout 0s 4408KB
stdin
Standard input is empty
stdout
i
d