Expression statement: ;
Expression statement is evaluating the expression, then make an evaluation and program execution continues with the next statement.;
Description
expression ;
Input
- expression -
Examples
Example
j = 3;
ret = j<i;
x = 10 * 5 -j;
Example
Other pieces of example codes:a2 = false || true;
i = x * 5;
y = 100- x;
y = 100 * 1.2;
y = 15 % 4;
i=10;
Expression statement in another programming language: