Node:Expressions and values, Next:Expressions, Previous:The assignment operator, Up:Expressions and operators
The most common operators in any language are basic arithmetic operators. In C, these include the following:
+
+5
-
-5
+
2 + 2
-
14 - 7
*
3 * 3
/
10.195 / 2.4
/
5 / 2
%
24 % 7