Vidyalelo
C++ Programming · Q90

Pointers and References in C++

Programming · C++ Programming · question 90

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
Answer
D.
7

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board