C++ keyword: break

break statement: as the declaration of the statement

# Example

#include <iostream>
 
int main() noexcept
{
    for (int i{0}; i < 69; ++i)
    {
        if (i == 3) [[unlikely]]
            break; // breaks from the 'for' loop
        std::cout << i;
    }
}

# See also