fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. float BMI = 19.8f;
  5.  
  6. if (BMI < 19.8f) {
  7. printf("BMI < 19.8f");
  8. }
  9.  
  10. if (BMI < 19.8) {
  11. printf("BMI < 19.8");
  12. }
  13.  
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout