Examveda

What will be the output of the following C++ code?
#include <stdio.h>
#include <math.h>
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

D. 2.4656

Answer: Option C


Join The Discussion

Related Questions on Standard Template Library (STL) in C plus plus