Wednesday 13 June 2012

Lecture: 93


                                                Lecture 93
// Loop While
#include <iostream>
#include <conio.h>
using namespace std;
 main ()
{  
    int n,a[5];
    cout<<"Initialisation array:\n ";
    n=0;
    while(n<5)
    {
         cout<<"Enter the number: ";
         cin>>a[n];
         n++;
    }
  getch();
  return 0;
}
Code view in dev compiler:

Compile the program Ctrl+F9

      Run program Ctrl+F10