Define the Arithmetic Operators in c Language?
There are five arithmetic operators in C and they are
Operator Purpose
+ Addition
- Subtraction
* Multiplication
/ Division
The operands acted up on by arithmetic operators should represent numeric values. Therefore the operands can be floating point quantities, integer quantities or character. The division operator (/) need the second operand be non zero, though the operand needs the integers.