Statements immediately contained within a bracketed pair
will all start in the same column, and that column will be
indented consistently to the right of the bracketing
statement's starting column by two to five spaces.
Note that, of course, the contents between the bracketing
statements will have to be indented with respect to the
outer indentation. For example,
if (x == 5) {
y = 7;
printf("x is five\n");
}
else {
y = 10;
printf("x is not five\n");
}