fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5.  
  6. int i = 0;
  7.  
  8. if ( (0 <= i) && (i <= 0)) {
  9. printf("This is true\n");
  10. }
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
This is true