Which operator will give the remainder of a division operation? 

  • %
The '%' operator in C++ is called the modulus operator. It is used to determine the remainder of a division operation between two integers. For example, '7 % 3' will return 1 as the remainder.
Add your answer
Loading...

Leave a comment

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