// ptr2.cc #include using namespace std; int main() { int v3[] = { 1, 2, 3, 4, 5, 6, 7 }; // array of size 7 int* d = v3; int*c = &v3[4]; cout << "d = " << d << ", *d: " << *d <