C - 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
C
j = 3;
ret = j<i;
x = 10 * 5 -j;
C
Other pieces of example codes:i = x * 5;
x = 10 * 5;
i=10;
x = 1 | 2;
b = 8 < x;
b = c == f(5);
Expression statement in another programming language: