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