fork(7) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. int i=4;
  6. int x;
  7. x= ++i + ++i + ++i;
  8. printf("%d",x);
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23. // your code goes here
  24. return 0;
  25. }
  26.  
Success #stdin #stdout 0s 2160KB
stdin
Standard input is empty
stdout
19