-
Which of the following statement should be used to obtain a remainder after dividing 7.39 by 5.9 ?
-
- rem = 7.39 % 5.9;
- rem = modf(7.39, 5.9);
- rem = fmod(7.39, 5.9):
- rem = 7.39 mod 5.9
- We cannot obtain the remainder in floating point division.
Correct Option: E
We cannot obtain the remainder in floating point division.