[Previous] [Contents]


Sidebar 1 - C Coding Suggestions

* Always enclose conditional code in braces.
* Do all assignments as separate statements, not as part of a more complex expression.
* Use parentheses around expressions on return statements.
* Never use the C switch statement.
* Place the opening /* and closing */ for comments on lines by themselves, and use a | to begin each line of comment text.

[Previous] [Contents]