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