I would like to know is there a way to to return back to the last iteration of the for loop, after the break and continue from there, for ex.:
void loop()
{
for (n ; n<10; n++)
if (n=5) { break; }
}
// code
loop(); // should start from 6 ...