✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
є функція
int sum (int a, int a1 = 2, int a2, int a3, int a4) {return a + a1 + a2 + a3 + a4;}
що буде виведено на екран після виконання кодуcout<<sum(9,8,7,6);
(C++)