fork download
  1. #include <cstddef>
  2.  
  3. int main()
  4. {
  5. int* a = new int[5];
  6. delete[] a;
  7. a=NULL;
  8. delete[] a;
  9. return 0;
  10. }
Success #stdin #stdout 0s 2980KB
stdin
Standard input is empty
stdout
Standard output is empty