fork(1) download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.  
  8. string text;
  9. cout<<"Enter text: "<<std::endl;
  10.  
  11. getline(cin, text);
  12.  
  13. cout<<"Entered text: "<<text<<std::endl;
  14.  
  15. text = string(text.rbegin(), text.rend());
  16.  
  17. cout<<"Reverted text: "<<text<<std::endl;
  18.  
  19. return 0;
  20. }
Success #stdin #stdout 0s 16056KB
stdin
asdfgh
stdout
Enter text: 
Entered text: asdfgh
Reverted text: hgfdsa