C Programming Code Examples C > Pointers Code Examples how array addressing and pointer arithmetic are linked how array addressing and pointer arithmetic are linked #include <stdio.h> #define arraysize 10 int main() { char array[arraysize] = "24688642"; int index; /* Index into the array */ for (index = 0; index < arraysize; ++index) { printf("&array[index]=0x%p (array+index)=0x%p array[index]=0x%x\n", &array[index], (array+index), array[index]); } return (0); }