how many error occurs in C language ?
Answer Posted / jayasrinivas.donavalli
How can we say how many errors in C language,but Usually
Every Language has some errors like Syntaical and
Symantical Errors
Syntatical Errors are the error in the syntax like int x.
but here instead of semi colon we palce dot that is the
syntatical error.
Symantical Errors: The errors are in the symantics like If
is the keyword instead of that we write ef
then the meaning is changed that is symantical errors.
The above two errors are Compile time errors and we have
some runtime errors.They are due to some infinite loops
garbage collection or memory shortage or wrong Inputs
| Is This Answer Correct ? | 26 Yes | 6 No |
Post New Answer View All Answers
Describe the modifier in c?
What should malloc(0) do?
What are the features of c language?
i want to know the procedure of qualcomm for getting a job through offcampus
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What is a string?
Can variables be declared anywhere in c?
Explain the Difference between the New and Malloc keyword.
What is d scanf?
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
What are enumerated types?
When is the “void” keyword used in a function?
Distinguish between actual and formal arguments.
what is different between auto and local static? why should we use local static?