Oh, I'm sorry so much, because I often use default shortcut, so I rarely think there some people different from me.
So, this is my problem:
int main(){
For(i=1;i<=n;i++){
...... some line of code;
Function();
printf();
....... some line of code;
}
}
I debug at line Function(), and I want to go through this function-> press "step into". But I have pressed "next line" (But I don't want to), so I will go to line "printf" ---> so I cannot see what "function" do (and most of case, It have wrong answer, so I need to view it carefully).
So, the unique solution that I know is: I will restart debug, and debug again from int main(). It seem easy, but if my program run right from (i=1-->10), and wrong when i=11, so I must go through tenth times :-O
that's my problem, hope that clearer for you.
so, thanks for all
