fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5.  
  6. int main() {
  7. const string a_string = "a long string "
  8. "with \" .. with \" "
  9. "again ... ... ";
  10. cout << a_string << endl;
  11. return 0;
  12. }
Success #stdin #stdout 0s 4264KB
stdin
Standard input is empty
stdout
a long string with " .. with " again ... ...