#include <iostream> #include <limits> using namespace std; int main( ) { cout << numeric_limits<float> :: min_exponent << endl; }
In this program, We are finding the minimum radix of a type by using min_exponent function.
Previous Question Next Question
Your comments will be displayed only after manual approval.