Always initialize variables to 0 (or appropriate null) explicitly to avoid garbage data in memory.
Other developers (or you, six months later) will not understand what the number represents. magic 0
Always initialize variables to 0 (or appropriate null) explicitly to avoid garbage data in memory.
Other developers (or you, six months later) will not understand what the number represents.