ObjectiveMcq
Print Protected
This page is protected for print. Use the website to view the content.
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;
}
Correct Answer: C — 1.704
No explanation is available for this question yet.