fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. float x = 0.1;
  5. if (x == 0.1)
  6. printf("IF");
  7. else if (x == 0.1f)
  8. printf("ELSE IF");
  9. else
  10. printf("ELSE");
  11. }
Runtime error #stdin #stdout 0s 2052KB
stdin
Standard input is empty
stdout
ELSE IF