Computer Science, asked by sanjai6677, 8 months ago

how to stop an infinite loop output in turbo c++​

Answers

Answered by rochak14
0

Answer:

just add a break statement in the loop body.

for( ; ; ) {

break;

}

Similar questions