fork download
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. int i, j;
  6. j = 10;
  7. i = (j++, j + 100, 999 + j);
  8. cout << i;
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
1010