fork download
  1. #include <stdio.h>
  2. int main() {
  3. int a=8,b=1,c;
  4. int ap,bp;
  5. ap= a++;
  6. bp= ++b;
  7. b=3*(ap==8);
  8. c=5*(ap!=8);
  9. printf("%d,%d,%d,%d,%d,%d",a,b,c,ap,bp);
  10. }
  11.  
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
9,3,0,8,2,0