From: | "robin" <robin51@dodo.com.au> |
Newsgroups: | comp.compilers |
Date: | Mon, 28 Mar 2011 01:01:23 +1000 |
Organization: | Compilers Central |
References: | 11-03-054 |
Keywords: | C, debug |
Posted-Date: | 27 Mar 2011 19:01:21 EDT |
rhoads@cs.rutgers.edu <rhoads@cs.rutgers.edu>
>I have an C++ application program that is producing incorrect results
>but the error goes away when I run it through the debugger.
A typical cause of such behaviour is that something in the executable
is being destroyed. Modifying the code in some way such as removing
or adding a print statement, etc, alters the effect.
Likely causes are a subscript error, or string error,
but is not restricted to those; pointer errors could be the cause.
Return to the
comp.compilers page.
Search the
comp.compilers archives again.