Binary Operators
Binary operators associate from left to right. CLight provides the following binary operators:
Symbol
Name
*
/
%
Multiplicative operators
+
-
Additive operators
<
>
<=
>=
==
!=
Relational operators
Syntax
binary-operator
: +
-
*
/
%
==
!=
<
<=
>
>=
Example
Last updated