fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int ix= 500 ;
  5. long int lx1=0,lx2=0;
  6. lx1=2147483647l + 10 ;
  7. lx2=2100000000 ;
  8. if( ix < (lx1-lx2) )
  9. printf("ix is not bigger \n");
  10. else
  11. printf("ix is bigger \n");
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 4504KB
stdin
Standard input is empty
stdout
ix is not bigger