Discription About Program

1.In this program, you will learn to work with arrays.
You will learn to declare, initialize and access array elements of an array .

For Example-:

	 #include<stdio.h>
	 void main()
	 {
	   int a[5],i;
	   printf("enter the element");
	   for(i=0;i<5;i++)
	   {
	   scanf("%d",&a[i]);
	   }
 printf("the array element is:");
	   for(i=0;i<5;i++)
	   {
 printf("%d",a[i]);
	   }
	 }