Errors in the structure of your code that violate the
rules of the C++ language
Syntax Error
What are examples of Syntax errors?
Missing semicolons, Misspelled keywords, Unbalanced parentheses or braces and Undeclared Variables
What type of errors are encountered after the program has been executed?
Syntax Errors
Errors in the logic of your code that cause it to produce
incorrect or unexpected results
Semantic Error
What type of errors are encountered during the runtime of the program?
Semantic Errors
What are examples of Semantic errors?
Incorrect Calculations, Type Mismatches, Uninitialized Variables and Division by zero