Sunday 20 May 2012

Lecture: 73


                                                Lecture 73

//Break for loop
#include <iostream>
#include <conio.h>
using namespace std;
 main ()
{  
   int i; 
   for(i=1;i<10;i++)
   {
       if(i==5) break;         
    cout<<i<<" ";
   }        
  getch();
  return 0;
}
Code view in dev compiler:

Compile the program Ctrl+F9

      Run program Ctrl+F10