Formatting

Identation

Code should be Indented according to the Ansi Style, Look at the Artistic Style Documentation for a full specifcation of this(astyle.sf.net,FIXME). Code can be automaticly formatted with the astyle --style=ansi command.

Spacing

Operators should be seperated by spaces.

Good: a = b + 1;

Bad: a=b+1;