Control Instructions - Programming

Q1:

The modulus operator cannot be used with a long double.

A True

B False

ANS:A - True

fmod(x,y) - Calculates x modulo y, the remainder of x/y.
This function is the same as the modulus operator. But fmod() performs floating point or long double divisions.