modulus operator for double variables
If i use modulus opertor for double variables,
e.g - 15.2%2.2 ,
iam getting the following error.
error C2296: '%' : illegal, left operand has type 'const double'
error C2297: '%' : illegal, right operand has type 'const double'
How to fix this error

