How can I debug a loop! I have a loop of 50000 count and want to debug the end of it. I have to press F8 for it 50000 time to get the end result. How can I do by skipping the 49900 loop and directly go to last loop by debugging! Thanks
for (int i=0;i<50000;i++)
// some code;

