fork download
  1. #include <stdio.h>
  2.  
  3. void main()
  4. {
  5. int x=3,y,z;
  6. z=y=x;
  7. z*=y=x*x;
  8. printf("x=%d y=%d z=%d\n",x,y,z);
  9. return 0;
  10. }
  11.  
Runtime error #stdin #stdout 0s 4396KB
stdin
Standard input is empty
stdout
x=3 y=9 z=27