Monday, May 16, 2011

Initialize all variables before use

Always remember to initialize variables with default values. This is not only a good programming practice but helps prevent logical errors. For instance, it is very helpful to set all pointers to NULL when you declare them; that way, if you accidentally use an un initialized pointer, you will get a segmentation fault rather than weird memory errors that appear random and are difficult to trace to the root cause.