Error debugging

Closed
kalai - Mar 16, 2009 at 11:26 AM
 shivu - Aug 31, 2009 at 10:29 AM
Hello,


what are the types of error debugging in c language.
Related:

2 responses

hi what are the types syntax error in c ,how to clear that error.
0
There only 2 types of errors in c and c++....
They are syntactial error and logical error.
first type of error can be solved by using correct syntax.
logical error can be debugged by analysing whole in order of sequential execution of program...
0
peisenmann Posts 6 Registration date Saturday March 21, 2009 Status Member Last seen March 21, 2009
Mar 21, 2009 at 07:54 PM
There are lots of syntax errors in C. Each compiler uses different names and error strings for the errors that they catch, and that can even vary by operating system.

You're better off listing the errors you're getting and having people tell you how to fix them.
0