fork(1) download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. struct S { void (*f)(); };
  6.  
  7. int main()
  8. {
  9. S s = S();
  10. s.f = NULL;
  11. return 0;
  12.  
  13. }
  14.  
  15.  
Success #stdin #stdout 0s 2848KB
stdin
Standard input is empty
stdout
Standard output is empty