I often hear that when compiling C and C++ programs I should \"always enable compiler warnings\". Why is this necessary? How do I do that?
Sometimes I also hear tha
A warning is an error waiting to happen. So you must enable compiler warnings and tidy up your code to remove any warning.