C++ - Expression statement: ;

Expression statement is evaluating the expression, then make an evaluation and program execution continues with the next statement.

;

Description

expression ;
Used keywords: ;

Input

  • expression -
Compatible programing languages:
Visual C++ .NET

Examples

C++

 j = 3;
 ret = j<i;
 x = 10 * 5 -j;

C++

Other pieces of example codes:
y = 100 + x;
y = 15 % 4;
y = 5 & 3;
a = 5 < 10;
a = 5 < 10;
ymax = 2147483647;
Expression statement in another programming language:
Languages: en hu cz sk