R break Statement

In this tutorial you will learn about the R break Statement and its application with practical example.

R break Statement

In R, break statement inside any loop gives you way to break or terminate the execution of loop containing it, and transfers the execution to the next statement following the loop. It is almost always used with if..else construct. If break statement is used inside a nested loop, it allows to break and exit from the innermost loop it is used in.

Table Of Contents

Syntax:-

Example:-

In this above program, the variable count is initialized as 0. Then a while loop is executed as long as the variable count is less than 10. Inside the while loop, the count variable is incremented by 1 with each iteration (count = count + 1). Next, we have an if statement that checks the variable count is equal to 5, if it return TRUE causes loop to break or terminate. Within the loop there is a print() statement that will execute with each iteration of the while loop until the loop breaks. Then, there is a final print() statement outside of the while loop.

When we run this code, our output will be as follows –

Output:-

r_break_statement

In this tutorial we have learn about the R break Statement and its application with practical example. I hope you will like this tutorial.