Pascal - Relational operators
The main use of the relational operators is in control of conditional statements. thanks to these, we can decide which direction to continue the conditional statements, or for example, how many iterations of the cycle need to perform.Pascal
Other pieces of example codes:if i=10 then break else begin dec(i); end
if y<5 then y := y/ 3.14;
y <= x
x > y
a := 4 >= 2;
x <> y
Relational operators in another programming language: