Vidyalelo
C++ Programming · Q56

Pointers and References in C++

Programming · C++ Programming · question 56

Q56

What will be the output of the following C++ code? #include using namespace std; int main() int a[2][4] = 3, 6, 9, 12, 15, 18, 21, 24; cout << *(a[1] + 2) << *(*(a + 1) + 2) << 2[1[a]]; return 0;

A.
15 18 21
B.
21 21 21
Answer
C.
24 24 24
D.
Compile time error

Answer: Option B

Solution

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