8
Statements
[stmt.stmt]
8.4
Compound statement or block
[stmt.block]
1
#
A
compound statement
(also known as a block) groups a sequence of statements into a single statement
.
compound-statement
:
{
statement-seq
o
p
t
}
statement-seq
:
statement
statement-seq
statement
A compound statement defines a
block scope
.
[
Note
1
:
A declaration is a
statement
(
[stmt.
dcl]
)
.
—
end note
]