|
|
int x;
double y;
|
Integer: + - * / %
Float: + - * /
|
Pre operators: ++x --x
Post operators: x++ x--
|
Integer Assignment operators: += -= *= /= %=
Float Assignment operators: += -= *= /=
|
Comparison operators: < <= > >= == !=
|
Logical operators: && || !
|
Examples:
x = (a + b) * (c + d % e);
|
|