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