fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int j=7,i=4;
  5. j=j||++i&&printf("you can");
  6. printf("%d %d",i,j);
  7.  
  8. return 0;
  9. }
Success #stdin #stdout 0.01s 1676KB
stdin
Standard input is empty
stdout
4 1