fork download
  1. #include <stdio.h>
  2. #include <iostream>
  3.  
  4. int main()
  5. {
  6. std::string * strPtr = new std::string("Hello World!\n");
  7. std::cout << (std::string)*strPtr;
  8.  
  9. delete strPtr;
  10.  
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 4508KB
stdin
Standard input is empty
stdout
Hello World!