What is the output of this program?
#include <stdio.h>
#include <math.h>
int main ()
{
double param, result;
param = 5.5;
result = log (param);
printf ("%lf", result );
return 0;
}
None of the mentioned
3.14
1.704
5.5
Answer and explanation
No explanation is available for this question yet.
