fork download
  1. #include <iostream>
  2.  
  3. struct Foo { };
  4. int main()
  5. {
  6. Foo *p = 0;
  7. if (p == 0)
  8. {
  9. std::cout << "works\n";
  10. }
  11. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
works