for (...)
for (...)
{
break;
break; // 1
}
Will the code at (1) execute? There could also be there continue
or anything else. I know I could just check in my debugger but I wanna know what C++ standard says about it as my compiler might just be a special case.