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