fork download
  1. #include<stdio.h>
  2. void print_(int c){
  3. c ? printf("True \n"):
  4. printf("False \n");
  5. }
  6. int main(void){
  7. float a = 0.0f;
  8. print_(0.0f < a < 1.0f);
  9. print_(0.0f < a && a < 1.0f);
  10. return 0;
  11. }
Success #stdin #stdout 0s 1788KB
stdin
Standard input is empty
stdout
True 
False