fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct A {
  5. int a1;
  6. int a2;
  7. };
  8. int main() {
  9. A *a;
  10. a = 0;
  11. delete [] a;
  12. return 0;
  13. }
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty