How to continue outer loop in C++

1 Answer

0 votes
#include <iostream> 

int main() {
    for (int outer = 0; outer < 4; outer++) {
        for (int inner = 0; inner < 3; inner++) {
            if (inner == 2) {
                goto continue_outer; // Continue the outer loop
            }
            std::cout << "Outer: " << outer << ", Inner: " << inner << "\n";
        }
    continue_outer:
        // Label to jump to
        std::cout << "continue_outer: " << outer << "\n";
    }
    
    return 0;
}



/*
run:

Outer: 0, Inner: 0
Outer: 0, Inner: 1
continue_outer: 0
Outer: 1, Inner: 0
Outer: 1, Inner: 1
continue_outer: 1
Outer: 2, Inner: 0
Outer: 2, Inner: 1
continue_outer: 2
Outer: 3, Inner: 0
Outer: 3, Inner: 1
continue_outer: 3

*/

 



answered Apr 24, 2025 by avibootz

Related questions

3 answers 146 views
146 views asked Apr 28, 2025 by avibootz
1 answer 93 views
1 answer 104 views
104 views asked Apr 24, 2025 by avibootz
1 answer 111 views
111 views asked Apr 25, 2025 by avibootz
3 answers 183 views
2 answers 118 views
...