Computer Science, asked by sidrajamal20, 4 months ago

which statement, when executed in a repetition statement or a switch, causes an immediate exit from the statement.

Make a short program to justify your selection



exit
break
continue
None of the above

Answers

Answered by TylerDurden123
1

Answer:

break

Explanation:

int i=5;

while(i-- >=0){

cout<<i<<" ";

if (i==3)

break;

}

Output:

5 4 3

Similar questions