#include using namespace std; int main(int argc, char* argv[]) { const int ARRAY_SIZE = 10; int theIntegerArray[ARRAY_SIZE]; double theDoubleArray[ARRAY_SIZE]; cout << "Address of start of intege rarray: " << theIntegerArray << endl; cout << "Address of integer array, index[0]: " << &(theIntegerArray[0]) << endl; cout << "Address of integer array, index[1]: " << &(theIntegerArray[1]) << endl; cout << "Address of start of double array: " << theDoubleArray << endl; cout << "Address of double array, index[0]: " << &(theDoubleArray[0]) << endl; cout << "Address of double array, index[1]: " << &(theDoubleArray[1]) << endl; }