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