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