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