Computer Science, asked by gowsiya7555, 9 months ago

The statement used to stop a FOR loop permaturely

Answers

Answered by prakhargupta3301
0

Answer:

break;

Explanation:

int x=1;

for (int i=0;i<10;i++)

{

cout<<"inside loop"<<i;

if (x==1)

break;

}

OUTPUT:

inside loop 1

....End of program

Similar questions