#include using namespace std; int main(int argc, char* argv[]) { int myArray[7][4]; cout << "Address of base of array: " << myArray << endl; cout << "Address of first subarray: " << myArray[0] << endl; cout << "Address of item in first position: " << &(myArray[0][0]) << endl; cout << "Address of moving up a row from base: " << &(myArray[1][0]) << " (should be 16 different)" << endl; cout << "Address of moving up a column from base: " << &(myArray[0][1]) << " (should be 4 different)" << endl; }