Free Pascal - Arithmetic operators
Are used to perform mathematical operations. the following are basic operations between the arithmetic operators:Free Pascal
Other pieces of example codes:50 / i
i + 5
(j - 8)
z := (x / 5) * 10;
y:= 15 mod 4;
y:= 1025 div 8;
Arithmetic operators in another programming language: