1.

What is the output of this program?
#include <iostream>
#include <limits>
using namespace std;
int main( )
{
cout << numeric_limits<float> :: min_exponent << endl;
}

A. 125
B. 123
C. 124
D. -125
E. -100
Answer» E. -100


Discussion

No Comment Found

Related MCQs