Initialise all variables before use

This tip submitted by Mounish on 2005-06-22 03:22:28. It has been viewed 48810 times.
Rating of 5.5 with 255 votes



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 uninitialized pointer, you will get a segmentation fault rather than weird memory errors that appear random and are difficult to trace to the root cause.



More tips

Help your fellow programmers! Add a tip!