Tuesday, 5 January 2016

FOR LOOP IN C++

FOR LOOP IN C++

Cplusplus, For Loop in C.

Structure of the Problem Requirements 
Loops are used to repeat the same pattern as per user requirements . In for loop we mention the number of repeated cycles at the time of loop starting.
Source Code
#include<iostream>
using namespace std;
int main ()
{
 for ( int i =0; i<5; i++ )
 {
  cout<<"\n  LEP Provides tutorial Free of cost :) ";
 }
}


No comments:

Post a Comment