Infinite For Loop in C++
Cplusplus, how to make a loop infinite, How to stop
infinite for loop,Infinite For Loop in c .
Structure
of the Problem Requirements
The
for loop become infinite when all the condition in the loop are true and there
is no false condition . There are many ways to make a loop infinite but the
most simple is to leave the conditional area empty . The Compiler assume that
all these conditions are true and the loop become infinite . To stop an
infinite loop just press Ctrl+C .
Source
Code
#include
<iostream>
using namespace std;
int main ()
{
for( ; ; )
{
cout<<" LEP C++ Tutorials For Beginners \n";
}
}
Output
of the Program

No comments:
Post a Comment