noun
compound statement
Technical computing term for a statement that groups multiple statements together, such as a block in curly braces or a begin...end block.
C言語では、中括弧で囲まれた部分が複合文になる。
In C, the part enclosed in curly braces becomes a compound statement.
複合文を使うと、複数の文を一つの文として扱える。
Using a compound statement, you can treat multiple statements as one.