fork download
  1. #include <iostream>
  2. #include <limits>
  3.  
  4. int main()
  5. {
  6. double max = std::numeric_limits<double>::max();
  7. double min = std::numeric_limits<double>::min();
  8. if ( min / max < min ) std::cout << "undeflow??";
  9. return 0;
  10. }
Success #stdin #stdout 0s 2896KB
stdin
Standard input is empty
stdout
undeflow??