This chapter 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 ...