fork download
  1. #include <iostream>
  2.  
  3. const char* my_text =
  4. R"(Hello,
  5. This is an example of how the text file may look
  6. some information over here
  7. and here
  8. and so on)";
  9.  
  10. int main()
  11. {
  12. std::cout << my_text;
  13. return 0;
  14. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
Hello,
This is an example of how the text file may look
some information over here
and here
and so on