how can i exit from nested while() or for() without goto?
for example if i use three loops like below in a function:
void myfun(){
for (;;)
{
while( true )
{
for (;;)
{
//what is the exit code of all loop() from here?
}
}
}
}
using break;
only can exit from one loop,
but how can i exit all loops ?
the loops can be limited by counter or unlimited.