fork(2) download
  1. struct X{
  2. void f(){ if(!this)return; i = 5; }
  3. int i;
  4. };
  5.  
  6. int main(){
  7. X* px = 0;
  8. px->f();
  9. }
Success #stdin #stdout 0.01s 2720KB
stdin
Standard input is empty
stdout
Standard output is empty