✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що відбудеться в результаті виконанні наступного коду?
int A[4] = {1, 3, 5};
int c = ++A[2] + A[3]++;
c += ++A[3];
cout<<c;