Arithmetic Expressions
From mi-linux
Jump to navigationJump to search
Arithmetic expressions contain operators for doing arithmetic such as * for doing multiplication.
Example
int b = 5; int a = 3 * b;
In this case an arithmetic expression is used to store the number 15 in the variable a.
Go back to Expressions.