fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. char *str = "hi";
  6.  
  7. delete [] str;
  8. return 0;
  9. }
Runtime error #stdin #stdout 0s 3292KB
stdin
Standard input is empty
stdout
Standard output is empty