Visual 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
Visual C++ .NET
j = 3;
ret = j<i;
x = 10 * 5 -j;
Visual C++ .NET
Other pieces of example codes:y= false;
b = 8 < x;
y = 15 % 4;
a4 = true || true;
ymax = 18446744073709551615;
y = x * 3.14;
Expression statement in another programming language: