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
1
Answer:
break
Explanation:
int i=5;
while(i-- >=0){
cout<<i<<" ";
if (i==3)
break;
}
Output:
5 4 3
Similar questions