fork download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. double f = 123.456;
  9. string name = to_string(f);
  10. cout << name;
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 16048KB
stdin
Standard input is empty
stdout
123.456000