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