Error in C++
Types of Error in C++
Error is a abnormal condition whenever it occurs execution of the program is stopped these are mainly classified into following types.
Types of Error in C++
- Compile time error
- Run time error
Compile Time Error
If any error is generated at the time of compilation is known as compile time error, in general these are raised while break down the rules and regulation of programming language. Compile time errors also known as syntax errors.
Compile Time Error Example
Missing semicolon, writing keyword in upper case.
Run time error
If any error is generated at run time is known as runtime error, in general these are raised because of writing wrong logic in the program.
Example
Calling function without existence, divide by zero. Int a=10,b; B=a/0; --> infinite Here out of range of int data type.
In general it is very difficult to identify logical error in C language, to overcome this problem exception handling was introduced in object oriented programming language.
Warning
Warning is also an abnormal condition but whenever it occurred execution of program will never be stopped.
Note: In C language warning can be neglected but error can not be neglected.