Thursday 3 May 2012

Lecture 56


                                                Lecture 56
// Loop For
#include <iostream>
#include <conio.h>
using namespace std;
 main ()
{  
      int i;
      cout<<"Even number: ";     
      for(i=0;i<=10;i+=2)
          cout<<i<<" ";     
  getch();
  return 0;
}

Code view in dev compiler:

Compile the program Ctrl+F9

      Run program Ctrl+F10