fork download
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int a;
  5. int b = 5;
  6. a = 0 && --b;
  7. printf("%d %d", a, b);
  8. }
  9.  
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
0 5