fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int i = 5;
  5. printf("%d", i++);
  6. printf("%d", i--);
  7. printf("%d", ++i);
  8. printf("%d", --i);
  9. printf("%d", i);
  10. }
  11.  
  12. //https://pt.stackoverflow.com/q/262396/101
Success #stdin #stdout 0s 4280KB
stdin
Standard input is empty
stdout
56655