/
GUI Debuggers
GUI Debuggers
Back in the dark ages of computing before we had powerful GUI debuggers to allow us to step through code and inspect it, a time honoured technique to debug code was to put statements in the code to print to standard out.
i.e. printf statements.
See the C sandbox for an example.
Compared to sprinkling one’s code with printf statements and then having to remove them all when it was time to ship the product, graphical debuggers seem like a large improvement.
, multiple selections available,
Related content
What is C++ tracing?
What is C++ tracing?
More like this
Tracing C++ Sandbox
Tracing C++ Sandbox
More like this
Why use simple frameworks for debugging your own code versus generalized third party debuggers?
Why use simple frameworks for debugging your own code versus generalized third party debuggers?
More like this
Tracing can make it easier to profile code for performance rather than other tools
Tracing can make it easier to profile code for performance rather than other tools
More like this
C++ tracing is faster
C++ tracing is faster
More like this
How do you use tracing?
How do you use tracing?
More like this