fork download
  1.  
  2. int main()
  3. {
  4. int* a = new int[5];
  5. delete[] a;
  6. delete[] a;
  7. return 0;
  8. }
Runtime error #stdin #stdout 0s 4004KB
stdin
Standard input is empty
stdout
Standard output is empty