How is it possible to create float variable in C++ that is less than min float value?
#include <iostream> #include <limits> int main() { float x = std::numeric_limits<float>().min(); // x = 1.17549e-38 float y = 1.17549e-39f; // I created a variable that is less than min float value. How is it possible? if(x < y) std::cout << “x < y” << std::endl; else if (x == y) std::cout << “x == y” […]