fork download
  1. #include <iostream>
  2. #include <sstream>
  3. #include <string>
  4. using namespace std;
  5.  
  6. int main() {
  7. stringstream stream;
  8. stream << "Hello World!";
  9. string str;
  10. getline(stream, str);
  11. cout << hex;
  12. for(auto c : str)
  13. cout << (int) c << " ";
  14. return 0;
  15. }
Success #stdin #stdout 0s 3460KB
stdin
Standard input is empty
stdout
48 65 6c 6c 6f 20 57 6f 72 6c 64 21