fork download
  1. #include <cstdlib>
  2.  
  3. int main(){
  4. char* thing = new char[2048];
  5. free(thing);
  6. }
  7.  
Success #stdin #stdout 0.01s 5408KB
stdin
Standard input is empty
stdout
Standard output is empty