Meaning of
double x, y, z;
X = 5.123456;
Z= modf (x, *y) ;
Answers
Answered by
3
Answer:
Answer: a
Explanation: double modf(double x, double *y)
This function returns the fractional part of x, with the same sign. modf() function breaks the argument value into integer and fraction parts, each of which has the same sign as the argument. It stores the integer part as a double in the object pointed to by y.
Similar questions