What is the difference between a warning from the compiler and an error message from the compiler?

 What is the difference between a warning from the compiler and an error message from the compiler?

Answer: An error message usually causes code generation to stop. A warning does not. Unless you understand what the warning is all about you should not ignore warnings.

Comments