Vidyalelo
C++ Programming · Q103

Standard Template Library (STL) in C++

Programming · C++ Programming · question 103

Q103

What will be the output of the following C++ code? #include #include int main () int param, result; int n; param = 8.0; result = frexp (param , &n); printf ("%d ", param); return 0;

A.
6
B.
7
C.
8
Answer
D.
9

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board