InterviewSolution
Saved Bookmarks
| 1. |
Modulus for float could be achieved by?(a) a % b(b) modulus(a, b);(c) fmod(a, b);(d) mod(a, b);This question was addressed to me during an online interview.I'd like to ask this question from Float Datatype topic in section Floating Point & Sizeof Operator in C of C |
|
Answer» The CORRECT CHOICE is (c) fmod(a, B); |
|