answersLogoWhite

0

That's what a debugger is good for.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Microsoft visual c plus plus rumetime library runtime error cant access game?

runtime error


How do I fix a runtime error on my computer?

The runtime errors are based on the C++ runtime files.Your system is made and programmed on basis of these Function files.The files are predesigned and programmed to make a system run and it reads the code so that the computer can work.You must not be having or missing some runtime files.Download the file that suits your system. (Just go to microsoft website)Or you can download smart runtime error fixer that can do the job. (Haven't tried yet)


What kind of an error in c plus plus is dividing by zero?

The answer is in your own question. A divide by zero error is a divide or mod by zero type of error. In MSVC++ it has the error code C2124. Ultimately it is a fatal error and will either produce a compile time error or throw an unhandled exception at runtime.


When does a Borland c compiler throw an error as could not execute 16-bit process error code 32 when a program is executed after successful compilation?

If a program compiles and links successfully then there can be no compiler errors, period. Your error is a runtime error because the error only occurs when the machine code is executed, not during the compilation or linking processes. Runtime error 32 indicates a sharing violation. This essentially means you've attempted to access a file that is being used by another process.


What is execution time error in C programming?

Also known as a runtime error. These are errors to do with a program as it is running rather than when it was compiled. Runtime errors are usually because the programmer overlooked something. A hanging (floating) pointer as an example. Overwriting the bounds of a buffer is another. Runtime errors often cause crashes but a runtime error can exist for a long time (years) before it makes its self known. A debugger is a good tool for catching runtime errors but ultimately it is up to the programmer to not mess up in the first place.


What is wrong with this C code?

There is an error in line 42.


What is exception handling in C plus plus?

Exception handling is the means by which exceptions -- anomalous events -- are resolved without causing a runtime error.


What is a compiler in c program?

The compiler is software that allows any high-level language to be translated into the machine language, compilers are language specific, i.e. C language has its own compiler which will translate the code written in C language to the machine language, compiler for Java will do the same task for the Java code


What is runtime in c?

when we execute the program.


What does error code p0353 error mean for a 2003 eclipse?

Trouble code P0353 means:Ignition coil C primary/secondary circuit malfunction


What are limitations of c language?

c does not support runtime checkingchecking what?


Which error is difficult to find and why in c?

Logic errors are often the most difficult to find in C programming because they do not produce compiler errors or crashes; instead, they result in incorrect program behavior or output. These errors stem from flaws in the program's logic, such as incorrect algorithms or conditions that don’t account for all scenarios. Debugging logic errors usually requires careful analysis of the code and thorough testing, making them less straightforward to identify compared to syntax or runtime errors.