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