#include int main() { const int NUMELS = 20; int arr[NUMELS]; cout << "\nThe starting address of the arr array is: " << &arr[0] << endl; cout << "\nThe storage size of each array element is: " << sizeof(int) << endl; cout << "\nThe address of element number 5 is: " << &arr[5] << endl; cout << "\nThe starting address of the array," << "\ndisplayed using the notation arr is: " << arr << endl; return 0; }