Vidyalelo
C++ Programming · Q99

Standard Template Library (STL) in C++

Programming · C++ Programming · question 99

Q99

What will be the output of the following C++ code? #include #include int main () double param, result; param = 5.5; result = log (param); printf ("%lf", result ); return 0;

A.
5.5
B.
3.14
C.
1.704
Answer
D.
2.4656

Answer: Option C

Solution

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