Respuesta :

Answer:

The correct answer for the given question is  "Break"

Explanation:

The break statement is used in the programming language like c and c++ to terminate from the loop. After terminating from the loop, the rest of the statement is executed. We can use the break keyword to terminated from the loop.  It break the loop in one by one manner .

Following are the example in the c programming language .

#include <stdio.h> // header file

int main() // main function

{

   for(int k=1;k<5;++k) // itering over the loop

   {

       if(k==4) // check the condition

       {

           break; // break statement

       }

       printf(" hello\n");

   }

   printf(" brainly");

   return 0;

}

Output:

hello

hello

hello

brainly

In this example, the loop will be terminated when k==4 after terminating from the loop it executed the brainy statement which is inside printf.