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:x = 10;
xmin = -2147483648;
a = 5 < 10;
a = 2 <= funkc(false);
a = 2 > funkc(3);
a = 4 == 2;
Expression statement in another programming language: