Friday 11 May 2012

Lecture: 64


                                                Lecture 64

// Loop For
#include <iostream>
#include <conio.h>
using namespace std;
 main ()
{  
    int n,a[5];
    cout<<"Initialisation array:\n ";
    for(n=0;n<5;n++)
    {
         cout<<"Enter the number: ";
         cin>>a[n];
    }
  getch();
  return 0;
}

Code view in dev compiler:

Compile the program Ctrl+F9

      Run program Ctrl+F10