cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
*Is This Possible?*
*Is This Possible?*
May 18, 2016 at 2:23pm UTC
facun20
(3)
Is there a way to know exactly each line of code a program is running? Let's say for example I wanted to know all the lines of code Norton Antivirus is running and what commands and functions it has, would I be able to do such thing?
May 18, 2016 at 2:43pm UTC
keskiverto
(10402)
If you do have both the code and a binary with debug symbols, then a debugger can link/show code as program executes.
If you don't ... you can disassemple binary into something, but ...
For example:
http://www.thegeekstuff.com/2012/09/objdump-examples/
May 19, 2016 at 10:02am UTC
closed account (
48bpfSEw
)
"very sleepy" don't show you exactly the code lines, buts the functions has been called!
http://www.codersnotes.com/sleepy/
Topic archived. No new replies allowed.