fork download
  1. #include <iostream>
  2.  
  3. int main()
  4. {
  5.  
  6. int x;
  7.  
  8. std::cout << x << std::endl;
  9.  
  10. x++;
  11.  
  12. std::cout << x << std::endl;
  13.  
  14. return 0;
  15.  
  16. }
Success #stdin #stdout 0s 3340KB
stdin
Standard input is empty
stdout
0
1