Home » C++ Programming » Numbers » Question
  1. What is the output of this program?
    #include <iostream>
    #include <limits>
    using namespace std;
    int main( )
    {
    cout << numeric_limits<float> :: min_exponent << endl;
    }
    1. 125
    2. 123
    3. 124
    4. -125
    5. -100
Correct Option: D

In this program, We are finding the minimum radix of a type by using min_exponent function.



Your comments will be displayed only after manual approval.