Hi
I have a long loop inside a function call
If I want to just complete the loop in one step but continue single stepping the other instructions inside the function call, how do I do it in CodeBlocks?
Also, how to do the same thing for an inner loop in a nested loop?
Eg:
void fnc ( ...){
for (....)
{
// how to complete this loop immediately but single step through the other instructions in fnc()
}
for (.....)
{
.
.
.
for( ..... )
{
// how to complete this loop immediately but single step through the other instructions in the outer loop
}
.
.
.
}
Please help
Thank you
CodeBlocks: 10.05