Block
A block is used to unify a sequence of statements into a single statement.
Syntax: { sequence of statements }
Example: Here is a sequence of statements:a = 10;if (a < c) then a = c;
Here is a single statement which is a block:{ a = 10; if (a < c) then a = c; }