This section explains statements in general – expressions ending with a semicolon (;) and statements built into the language itself.
7.1 Introduction
int x; – a statement containing a declaration
int x = 123; – a statement containing an initialization
x = 123; – a simple assignment statement
z = x + y; – a statement with multiple expressions
x++; – a statement having a postfix increment ...