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