Formatting
Comments
C2 comments work in the same way as C's. Thus both forms are available:
// a one line comment
/* A
multi-line
comment
*/
Semicolons
Every statement in C2 is followed by a semicolon, except when it ends with a right-hand brace. Trailing attributes never change the rule above.
This means that in C2, you'll never see };
. It's easier on the eyes ;)