Q90
What will be the output of the following C++ code? #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
AnswerD.
7
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board