3
votes
How do you deal with NUL?
For dealing with strings, I alwayse represent the null character as '\0'.
For pointers, I try to use implicit-conversion-to-boolean (if (!myPtr) or if (myPtr)) for pointer nullity.
If …
5
votes
defensive coding practices
always initialize variables
use const wherever I can (without using mutable)
avoid bare dynamic allocation of memor or other resources
alw …
