Google News
logo
C-Language - Interview Questions
What is Arithmetic Operators in C ?
C Arithmetic operators are used to perform mathematical calculations like, Addition (+), Subtraction (-), Multiplication (*), Division (/), Modulo Division (%).

Modulo division produces the remainder of an integer division. During modulo division, the sign of the result is always the sign of the first operand (the dividend).

Example :
- 14 % 3 = -2 
-14 % - 3 = 2
Advertisement