pointer and array
pointer and array
In a array the first element of array that we represent as arr[ 0 ] it's self a pointer. and it also represent as *arr
by using this pointer array relation ship we can access the all the element of array by *( arr + 1), *(arr + 2 ) and so on...