Correct Answer: float a = 3.14; a = a%3;
Explanation:
The modulus (%) operator can only be used on integer types. We have to use fmod() function in math.h for float values.