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