Friday 6 February 2015

Infinite For Loop

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

Infinite For Loop

Share it Please
asad

About Author!

Asad Niazi is Software Engineer , Programmer, Web Developers and a young mentor of Tech Solutions Desk and Blogging Solutions . Asad Love to writes about Technology, Programming, Blogging and make money online.

0 comments:

Post a Comment