fork download
  1. #include <iostream>
  2.  
  3. using namespace std; // consider removing this line in serious projects
  4.  
  5.  
  6.  
  7. int main() {
  8.  
  9. int x = 10;
  10. x = x ++ ;
  11. cout << x ;
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18. return 0;
  19.  
  20. }
  21.  
  22.  
Success #stdin #stdout 0.01s 5324KB
stdin
Standard input is empty
stdout
10