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