My gripe at the way C is formatted in the "white book" is not the position
of the closing 'curly bracket', but of the opening one.
Thus instead of:-
if (......) {
..........
..........
}
I prefer to use
if (.......)
{
..........
..........
}
This makes it easier to check that brackets are paired with the one you
intended.