InterviewSolution
Saved Bookmarks
| 1. |
double ______ (double x, double y) computes the floating-point remainder of x/y.(a) modf(b) fmod(c) ceil(d) floorThe question was posed to me in final exam.This key question is from Mathematical functions topic in chapter C Library of C |
|
Answer» CORRECT ANSWER is (b) FMOD Explanation: double fmod(doublr x, double y); The fmod() FUNCTION computes the floating-point remainder of x/y. |
|