fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. int *p = NULL;
  7. int a = 10;
  8. int *p1 = &a;
  9. if(!(p1 && p)){
  10. cout << "hello" << endl;
  11. }
  12. return 0;
  13. }
Success #stdin #stdout 0s 4376KB
stdin
Standard input is empty
stdout
hello