What is the output of this code

#include stdio.h
#include math.h
int main ()
{
int gowri, result;
int n;
gowri = 4.0;
result = frexp (gowri , &n);
printf ("%d \n", gowri);
return 0;
}

Posted on by