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