C++ - 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.C++
Other pieces of example codes:do { i++; if (i==5) break; } while ( i <10);
a = 4 >= 2
b = c == f(5)
b = x <= 12
if (i - 10 >0) i = i-5;
y != 25
Relational operators in another programming language: