T
Tagore
Hi,
How can I break out of multiple nested loops?
i.e if i have a program structure like
for(;
{
for(;
{
....
,,,,
for(;
{
//How can I break out of here
break; //it only breaks only from last for loop.
}
}
}
//I want to reach here directly here after breaking
How can I break out of multiple nested loops?
i.e if i have a program structure like
for(;
{
for(;
....
,,,,
for(;
//How can I break out of here
break; //it only breaks only from last for loop.
}
}
}
//I want to reach here directly here after breaking