Discription About Program

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

For Example-:

	 #include<stdio.h>
	 void main()
	 {
	 char name[]="hellow";
	 int i=0;
	 while(i<=4)
	 {
	 printf("%c",name[i]);
	 i++;
	 }
	 printf("\n");
	 }