fork download
  1.  
  2. #include <stdio.h>
  3.  
  4. int main(void) {
  5. int x = 5;
  6. int y = x++ + ++x + x++;
  7. printf("%d %d", x, y);
  8. return 0;
  9. }
Success #stdin #stdout 0s 5292KB
stdin
Standard input is empty
stdout
8 19