Arithmetic operations


Operaters

Operators are the special characters that tell the programming language what operators to use.

Mathematical operators

Programming languages commonly have use the same operators:

  • + Add
  • - Subtract
  • / Divide
  • * Multiply

There are also other mathematical operators that can do several other operations like modulus which divides two numbers and returns the whole number as a remainder.