#include #include const int ARRAY_SIZE = 10; // number of characters in an array char array[ARRAY_SIZE] = "0123456789"; main() { int index; // Index into the array for (index = 0; index < ARRAY_SIZE; ++index) { cout << hex; cout << "&array[index] = " << int(&array[index]) << " (array+index) = " << int(array+index) << " array[index] = " << int(array[index]) << '\n'; cout << dec; } return(0); }