how-to-c-response
how-to-c-response copied to clipboard
A critique of "How to C in 2016"
Results
1
how-to-c-response issues
Sort by
recently updated
recently updated
newest added
The problem with always initializing everything to zero is that unitialized memory checkers can't help you. Tools like valgrind can warn you if you use a variable before setting it...