What is the output of this program? #include <iostream><br /> using namespace std;<br /> int main()<br /> {<br /> int arr[] = {4, 5, 6, 7};<br /> int *p = (arr + 1);<br /> cout << arr;<br /> return 0;<br /> }

Correct Answer: address of arr

As we couted to print only arr, it will print the address of the array.