Stepping Through Your C or C++ Program
See Also
Once execution of your program is halted, you can step through your
lines of code using the following commands on the Debug menu or
toolbar:
- Step Over (F8)
. Executes one source line or statement.
If the source line is a function call, executes the entire function
without stepping through the individual function instructions.
- Step Into (F7)
. Executes one source line or statement.
If the source line is a function call, stops before the first
statement of the function.
- Step Out (Ctrl-F7)
. Executes one source line or statement.
Finishes execution of the current function and stops on the source
line immediately following the call to that function.
- Step Into Last Function
. Attempts to step into the selected function, or if no function is selected,
into the last function called from the current source line
Copyright © 2014, Oracle and/or its affiliates. All rights reserved.