fork(1) download
  1. #include <stdio.h>
  2. int main(void){
  3. float big = 16777216.0f;
  4. float one = 1.0f;
  5. float big_plue_one = big + one;
  6. if( big_plue_one == big){
  7. printf("equal gotcha !!\n");
  8. }else{
  9. printf("not equal\n");
  10. }
  11. return 0;
  12. }
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
equal gotcha !!