fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int x,y,z;
  5. x = y = z = 1;
  6. ++x||++y&&++z;
  7. printf("%d %d %d\n", x, y, z);
  8. return 0;
  9. }
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
2 1 1