February 2021
Beginner
338 pages
4h 11m
English
This section explains statements in general – expressions ending with a semicolon (;) and statements built into the language itself.
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 ...
Read now
Unlock full access