✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Яке значення отримає "p [0]" в даному прикладі?
int a [2] [3] = { {1,2,3 }, {7,8,9 } };
int * p = & a [0] [2];
p + = 3;
(C++)