fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int a=2, b=3,c,d,e;
  6. c= a>3 && b>2;
  7. d= a>3||b>2;
  8. e=!c;
  9. printf("%d, %d, %d\n",c,d,e);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
0, 1, 1