Compound statements
(cont.)
n
Braces are used to create a
block
or
compound statement
, which is
a
single composite statement
.
n
if
(condition) {
if
(condition) {
n
statement
1
statement
1
n
…
…
n
statement
n
statement
n
n
}
}
else
{
n
statement
1
n
…
n
statement
n
n
}