#include<stdio.h>
#include<stdlib.h>
//This header file contains the system() function.
main() 
{ 
int arr[5],i; 
printf("      Enter Five numbers : "); 
for(i=0;i<5;i++) 
{ 
scanf("%d",&arr[i]); 
} 
printf("\n      You have Entered these following numbers : \n"); 
for(i=0;i<5;i++) 
{ 
printf("      %d\n", arr[i]); 
} 
system("pause"); 
//this function is called for pause the screen. 
} 
