In C, the ________ operator is used to find the remainder of a division operation.

  • Modulus (%)
  • Division (/)
  • Exponentiation (^)
  • Multiplication (*)
The correct option is (a) Modulus (%). The modulus operator (%) in C is used to find the remainder of a division operation. For example, 10 % 3 equals 1 because the remainder when 10 is divided by 3 is 1.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *