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 ()
{
int param, result;
int n;
param = 8.0;
result = frexp (param , &n);
printf ("%d \n", param);
return 0;
}
Correct Answer: C — 8
No explanation is available for this question yet.