fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.  
  8. int abc, def;
  9. int *p;
  10. cout<<"pointer: "<<p<<endl;
  11. cout<<"Hello World: "<<abc<<endl;
  12. cout<<"Hello World: "<<def<<endl;
  13.  
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 5552KB
stdin
Standard input is empty
stdout
pointer: 0
Hello World: 0
Hello World: 0