#013 – Avoid default initialization for variables
Consider the following This is default-initialization. This defines the variable with a garbage value (not zero). If we print its contents, it will be whatever value is sitting at that memory address. Who knows! When you don’t initialize a variable,…