fork(2) download
  1. #include <iostream>
  2. #include <string>
  3.  
  4. int main() {
  5. int x = 384270;
  6.  
  7. auto s = std::to_string(x);
  8. s.assign(s.rbegin(), s.rend());
  9. std::cout << s << std::endl;
  10. }
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
072483