how to view every line execution of a program in C ++
Answers
Answered by
6
Answer:
Press F-7 . You can see your program execution line by line. If you want to trace your program, there used to be an old UNIX tool ctrace (see for example this manpage) that instrumented a C program with printf() statements after each line thus letting it print the trace as it runs.
Answered by
1
Explanation:
Press F-7 . You can see your program execution line by line. If you want to trace your program, there used to be an old UNIX tool ctrace (see for example this manpage) that instrumented a C program with printf() statements after each line thus letting it print the trace as it runs.
Similar questions