[Previous] [Contents]


Sidebar 1 - C Coding Suggestions

* Declare C arrays with one extra element, and don't use the element with subscript 0.
* Use macros to define tables and loops over them.
* Always guard a string assignment against overwriting the target variable.
* Create macros and functions to define strings and provide "safe" string operations.

[Previous] [Contents]