how many error occurs in C language ?
Answer Posted / ravi raj
Mainly there are 5 types of error that occur which are as :-
1.syntax error:- Error in syntax(gramer)of program.
2.semantic error:-Error in meaning of program.
3.logical error:-error in logic(logic and,or,not)which
compiler can not identify/check.
4.runtime error:-Error which occur due to insufficient of
memory, floating exception etc.
5.compile error:-Error that occur in compiling of program like
phrase error, in complete type, bad argument, can not locate
object etc.
| Is This Answer Correct ? | 8 Yes | 3 No |
Post New Answer View All Answers
What is the difference between functions abs() and fabs()?
How can you find the exact size of a data type in c?
find the sum of two matrices and WAP for it.
What is wrong with this initialization?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
How can a string be converted to a number?
Write a program which returns the first non repetitive character in the string?
What does the error 'Null Pointer Assignment' mean and what causes this error?
What is the difference between #include and #include 'file' ?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
Write a progarm to find the length of string using switch case?
Explain what is a pragma?
Explain the concept and use of type void.
Define Array of pointers.