The statement used to stop a FOR loop permaturely
Answers
Answered by
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
Math,
5 months ago
Computer Science,
5 months ago
Math,
5 months ago
Physics,
11 months ago
Science,
1 year ago