fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5.  
  6.  
  7.  
  8. int i=5;
  9. printf("%d%d%d%d%d",i++,i--,++i,--i,i);
  10.  
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 2008KB
stdin
Standard input is empty
stdout
45555