

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of this program?_x005F_x000D_  #include       using namespace std;      int main()      {          int arr[] = {4, 5, 6, 7};          int *p = (arr + 1);          cout << arr;          return 0;      } |
A. | 4 |
B. | 5 |
C. | address of arr |
D. | 7 |
Answer» D. 7 | |