Define the Modulo Division Operator in c language?
The C provides one more arithmetic operator % called as modulo division operator and this operator yields the remainder of an integer division. We can't use it on floating point numbers. Consider the expression 6/4 the result is one and to find the remainder modulo division operator is used 6%4. Note that 6%4 yields 2 where 4%6 4 and this operator works only with ints and chars and not on floats or doubles.